expose debug server for missing extensions

This commit is contained in:
Willy Kloucek
2022-05-18 15:24:39 +02:00
parent 75e770956b
commit ba120b61ef
5 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
Bugfix: Enable debug server by default
We've fixed the behavior for th audit, idm, nats and notifications extensions, that
did not start their debug server by default.
https://github.com/owncloud/ocis/pull/3827

View File

@@ -13,6 +13,9 @@ func FullDefaultConfig() *config.Config {
func DefaultConfig() *config.Config {
return &config.Config{
Debug: config.Debug{
Addr: "127.0.0.1:9234",
},
Service: config.Service{
Name: "audit",
},

View File

@@ -16,6 +16,9 @@ func FullDefaultConfig() *config.Config {
func DefaultConfig() *config.Config {
return &config.Config{
Debug: config.Debug{
Addr: "127.0.0.1:9239",
},
Service: config.Service{
Name: "idm",
},

View File

@@ -19,6 +19,9 @@ func FullDefaultConfig() *config.Config {
func DefaultConfig() *config.Config {
return &config.Config{
Debug: config.Debug{
Addr: "127.0.0.1:9234",
},
Service: config.Service{
Name: "nats",
},

View File

@@ -16,6 +16,9 @@ func FullDefaultConfig() *config.Config {
func DefaultConfig() *config.Config {
return &config.Config{
Debug: config.Debug{
Addr: "127.0.0.1:9174",
},
Service: config.Service{
Name: "notifications",
},