diff --git a/.drone.star b/.drone.star index 2385b7acf..e33546287 100644 --- a/.drone.star +++ b/.drone.star @@ -1348,8 +1348,7 @@ def ocisServer(storage, accounts_hash_difficulty = 4, volumes=[]): 'PROXY_ENABLE_BASIC_AUTH': True, 'WEB_UI_CONFIG': '/drone/src/tests/config/drone/ocis-config.json', 'IDP_IDENTIFIER_REGISTRATION_CONF': '/drone/src/tests/config/drone/identifier-registration.yml', - 'OCIS_LOG_LEVEL': 'debug', - 'OCIS_LOG_PRETTY': 'true', + 'OCIS_LOG_LEVEL': 'warn', } # Pass in "default" accounts_hash_difficulty to not set this environment variable. @@ -1377,7 +1376,7 @@ def ocisServer(storage, accounts_hash_difficulty = 4, volumes=[]): 'image': 'thegeeklab/wait-for:latest', 'pull': 'always', 'commands': [ - 'wait-for ocis-server:9200 -t 300 && sleep 5', + 'wait-for ocis-server:9200 -t 300', ], }, ] diff --git a/proxy/pkg/proxy/proxy.go b/proxy/pkg/proxy/proxy.go index 31f2c80e4..8e588418c 100644 --- a/proxy/pkg/proxy/proxy.go +++ b/proxy/pkg/proxy/proxy.go @@ -110,10 +110,6 @@ func NewMultiHostReverseProxy(opts ...Option) *MultiHostReverseProxy { } func (p *MultiHostReverseProxy) directorSelectionDirector(r *http.Request) { - p.logger.Info(). - Str("request", r.URL.Path). - Msg("%%%%%%%%%%%%% DIRECTING %%%%%%%%%%%%%%%%") - pol, err := p.PolicySelector(r.Context(), r) if err != nil { p.logger.Error().Msgf("Error while selecting pol %v", err)