From 391af95fb5969d540d9e52658f5ce1dea03859c4 Mon Sep 17 00:00:00 2001 From: Igor Gov Date: Thu, 10 Feb 2022 17:00:13 +0200 Subject: [PATCH] Fix: tapper count check (#791) --- cli/cmd/checkRunner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/checkRunner.go b/cli/cmd/checkRunner.go index c7caa2dea..7bbb0d8d0 100644 --- a/cli/cmd/checkRunner.go +++ b/cli/cmd/checkRunner.go @@ -256,7 +256,7 @@ func checkTapResourcesExist(ctx context.Context, kubernetesProvider *kubernetes. } } - if tappers != notRunningTappers { + if notRunningTappers > 0 { logger.Log.Errorf("%v '%v' %v/%v pods are not running", fmt.Sprintf(uiUtils.Red, "✗"), kubernetes.TapperPodName, notRunningTappers, tappers) return false }