Skip to content

Commit

Permalink
Add rucio to file query by default as it required
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Jan 14, 2021
1 parent 2b68275 commit 8d24bb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.15

require (
github.com/buger/jsonparser v1.0.0
github.com/deckarep/golang-set v1.7.1 // indirect
github.com/dmwm/das2go v0.0.0-20201110181949-489bec8044c6
github.com/pkg/profile v1.5.0
github.com/stretchr/testify v1.6.1
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/deckarep/golang-set v1.7.1 h1:SCQV0S6gTtp6itiFrTqI+pfmJ4LN85S1YzhDf9rTHJQ=
github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ=
github.com/dmwm/cmsauth v0.0.0-20200227183320-1e78c9119730/go.mod h1:Bi7pLBRdNIRdhUbSFT3jZvEM2zTSTat/IuHiJMctqIQ=
github.com/dmwm/das2go v0.0.0-20201110181949-489bec8044c6 h1:+hUPTasjQt+37MYIGHiOYPAlh54Fc7dLhXlvkFeutzQ=
github.com/dmwm/das2go v0.0.0-20201110181949-489bec8044c6/go.mod h1:tuJLoiupaeyzy5PiWQRZyDMC5BrZUUxM1BNM8d3aALk=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ func DASKeyMap() map[string][]string {
"site": []string{"dbs", "combined", "rucio"},
"dataset": []string{"dbs3"},
"block": []string{"dbs3"},
"file": []string{"dbs3"},
"file": []string{"dbs3", "rucio"},
"run": []string{"runregistry", "dbs3"},
"config": []string{"reqmgr2"},
}
Expand Down

0 comments on commit 8d24bb2

Please sign in to comment.