diff --git a/changelog/unreleased/spare-port-80.md b/changelog/unreleased/spare-port-80.md new file mode 100644 index 00000000000..10e4b107af5 --- /dev/null +++ b/changelog/unreleased/spare-port-80.md @@ -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 diff --git a/storage/pkg/command/groups.go b/storage/pkg/command/groups.go index 3670aa79a96..8113aef6177 100644 --- a/storage/pkg/command/groups.go +++ b/storage/pkg/command/groups.go @@ -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),