Skip to content

Commit

Permalink
Merge pull request #2271 from owncloud/spare-port-80
Browse files Browse the repository at this point in the history
  • Loading branch information
refs authored Jul 7, 2021
2 parents 456e7c9 + 1c06060 commit 5114ba2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/spare-port-80.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Dont use port 80 as debug for GroupsProvider

A copy/paste error where the configuration for the groupsprovider's debug address was not present leaves go-micro to start the debug service in port 80 by default.

https://github.com/owncloud/ocis/pull/2271
2 changes: 1 addition & 1 deletion storage/pkg/command/groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func Groups(cfg *config.Config) *cli.Command {

debugServer, err := debug.Server(
debug.Name(c.Command.Name+"-debug"),
debug.Addr(cfg.Reva.Users.DebugAddr),
debug.Addr(cfg.Reva.Groups.DebugAddr),
debug.Logger(logger),
debug.Context(ctx),
debug.Config(cfg),
Expand Down

0 comments on commit 5114ba2

Please sign in to comment.