Skip to content

Commit

Permalink
downgrade sentinel url check log error to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
Intizar-T committed Aug 23, 2024
1 parent 01ace43 commit 213e3be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/checker/health/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func checkUrl(ctx context.Context, healthCheckUrl HealthCheckUrl) bool {
func checkHttp(url string) bool {
resp, err := http.Get(url)
if err != nil {
log.Error().Err(err).Msgf("Failed to check URL: %s", url)
log.Warn().Err(err).Msgf("Failed to check URL: %s", url)
return false
}
defer resp.Body.Close()
Expand Down

0 comments on commit 213e3be

Please sign in to comment.