Skip to content

Commit 3b91b7b

Browse files
Log in warn level when updating DiscoveryConfigStatus fails (#52713)
1 parent 87ffd4f commit 3b91b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/srv/discovery/status.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (s *Server) updateDiscoveryConfigStatus(discoveryConfigNames ...string) {
8888
case trace.IsNotImplemented(err):
8989
s.Log.WarnContext(ctx, "UpdateDiscoveryConfigStatus method is not implemented in Auth Server. Please upgrade it to a recent version.")
9090
case err != nil:
91-
s.Log.InfoContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
91+
s.Log.WarnContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
9292
}
9393
}
9494
}

0 commit comments

Comments
 (0)