Skip to content

Commit 8091bb6

Browse files
Log in warn level when updating DiscoveryConfigStatus fails (#52513) (#52716)
1 parent 36496a4 commit 8091bb6

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
@@ -78,7 +78,7 @@ func (s *Server) updateDiscoveryConfigStatus(discoveryConfigName string) {
7878
case trace.IsNotImplemented(err):
7979
s.Log.WarnContext(ctx, "UpdateDiscoveryConfigStatus method is not implemented in Auth Server. Please upgrade it to a recent version.")
8080
case err != nil:
81-
s.Log.InfoContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
81+
s.Log.WarnContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
8282
}
8383
}
8484

0 commit comments

Comments
 (0)