Use interception config only when ready

This commit is contained in:
Daniel
2022-10-11 14:49:57 +02:00
parent 694dfb5b46
commit e5a0f06f97
2 changed files with 7 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ func startAPIAuth() {
}
func apiAuthenticator(r *http.Request, s *http.Server) (token *api.AuthToken, err error) {
if devMode() {
if configReady.IsSet() && devMode() {
return &api.AuthToken{
Read: api.PermitSelf,
Write: api.PermitSelf,