From dc8c666f96ec17c0c1a34fac6f703375eff3d108 Mon Sep 17 00:00:00 2001 From: Michael Shitrit Date: Sun, 25 Dec 2022 10:22:52 +0200 Subject: [PATCH] Better phrasing for log message Signed-off-by: Michael Shitrit --- pkg/peers/response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/peers/response.go b/pkg/peers/response.go index 24850a9c..66535e4c 100644 --- a/pkg/peers/response.go +++ b/pkg/peers/response.go @@ -10,7 +10,7 @@ type reason string const ( HealthyBecauseCRNotFound reason = "CR Not found, node is considered healthy" HealthyBecauseErrorsThresholdNotReached reason = "Errors number hasn't reached threshold not querying peers yet, node is considered healthy" - HealthyBecauseNoPeersResponseNotReachedTimeout reason = "No response from peer hasn't passed the non responsive time threshold so still considered healthy" + HealthyBecauseNoPeersResponseNotReachedTimeout reason = "No response from peer. The duration of peer not responding hasn't passed the threshold so still considered healthy" HealthyBecauseNoPeersWereFound reason = "No Peers where found, node is considered healthy" HealthyBecauseMostPeersCantAccessAPIServer reason = "Most peers couldn't access API server, node is considered healthy"