Skip to content

Commit

Permalink
Use deep=True option for rucio replicas calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Apr 29, 2022
1 parent ea7b2a4 commit e576ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/combined.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func rucioInfo(dasquery dasql.DASQuery, blockNames []string) (mongo.DASRecord, m
blocks[blkName] = Block{Name: blkName}

// http://cms-rucio.cern.ch/replicas/cms/{block['name']}/datasets
furl = fmt.Sprintf("%s/replicas/cms/%s/datasets", RucioUrl(), url.QueryEscape(blkName))
furl = fmt.Sprintf("%s/replicas/cms/%s/datasets?deep=True", RucioUrl(), url.QueryEscape(blkName))
umap[furl] = 1 // keep track of processed urls below
go utils.Fetch(client, furl, "", chout)
}
Expand Down

0 comments on commit e576ef5

Please sign in to comment.