Skip to content

Commit

Permalink
Log in warn level when updating DiscoveryConfigStatus fails (#52513)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoandredinis authored Mar 3, 2025
1 parent 468663e commit cd05660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/srv/discovery/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (s *Server) updateDiscoveryConfigStatus(discoveryConfigNames ...string) {
case trace.IsNotImplemented(err):
s.Log.WarnContext(ctx, "UpdateDiscoveryConfigStatus method is not implemented in Auth Server. Please upgrade it to a recent version.")
case err != nil:
s.Log.InfoContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
s.Log.WarnContext(ctx, "Error updating discovery config status", "discovery_config_name", discoveryConfigName, "error", err)
}
}
}
Expand Down

0 comments on commit cd05660

Please sign in to comment.