From 57d05247f6968e46130b8591e4174a9b360bc3db Mon Sep 17 00:00:00 2001 From: Marc Bachmann Date: Thu, 17 Aug 2023 11:37:26 +0200 Subject: [PATCH] Fix `operator` typo in log message --- operator/redisfailover/service/check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operator/redisfailover/service/check.go b/operator/redisfailover/service/check.go index ae403b2af..def501825 100644 --- a/operator/redisfailover/service/check.go +++ b/operator/redisfailover/service/check.go @@ -184,10 +184,10 @@ func (r *RedisFailoverChecker) CheckIfMasterLocalhost(rFailover *redisfailoverv1 } } if lhmaster == len(redisIps) { - r.logger.Infof("all available redis configured localhost as master , opertor must heal") + r.logger.Infof("all available redis configured localhost as master , operator must heal") return true, nil } - r.logger.Infof("atleast one pod does not have localhost as master , opertor should not heal") + r.logger.Infof("atleast one pod does not have localhost as master , operator should not heal") return false, nil }