Skip to content

Commit

Permalink
Use a different prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Nov 17, 2023
1 parent 91d4768 commit 1020a88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cernboxspaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ host = "dbhost.example.org"
port = 3306
name = "dbname"
table = "cbox_projects"
prefix = "projects"
prefix = "cernboxspaces"
```
2 changes: 1 addition & 1 deletion cernboxspaces/cernboxspaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var projectRegex = regexp.MustCompile(`^cernbox-project-(?P<Name>.+)-(?P<Permiss

func (c *config) ApplyDefaults() {
if c.Prefix == "" {
c.Prefix = "projects"
c.Prefix = "cernboxspaces"
}

c.GatewaySvc = sharedconf.GetGatewaySVC(c.GatewaySvc)
Expand Down

0 comments on commit 1020a88

Please sign in to comment.