From 79ec2050e4ad391bf4b878dc68f1708b5bfeed6e Mon Sep 17 00:00:00 2001 From: Himanshu Sharma Date: Fri, 20 Jan 2023 11:09:06 +0530 Subject: [PATCH] updated confusing prober log --- internal/prober/prober.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/prober/prober.go b/internal/prober/prober.go index 9ef0ef67..84454019 100644 --- a/internal/prober/prober.go +++ b/internal/prober/prober.go @@ -133,7 +133,7 @@ func (p *Prober) probeInternal(shootClient kubernetes.Interface) { if err != nil { if !p.internalProbeStatus.canIgnoreProbeError(err) { p.internalProbeStatus.recordFailure(err, *p.config.FailureThreshold, p.config.InternalProbeFailureBackoffDuration.Duration) - p.l.Info("Recording internal probe failure, Skipping external probe and scaling", "err", err.Error(), "failedAttempts", p.internalProbeStatus.errorCount, "failureThreshold", p.config.FailureThreshold) + p.l.Info("Recording internal probe failure, Skipping external probe and scaling operation", "err", err.Error(), "failedAttempts", p.internalProbeStatus.errorCount, "failureThreshold", p.config.FailureThreshold) } else { p.internalProbeStatus.handleIgnorableError(err) p.l.Info("Internal probe was not successful. ignoring this error", "err", err.Error())