From f9d4972444f8be1ad5f180bf076077e8b46ac884 Mon Sep 17 00:00:00 2001 From: Rakshith R Date: Thu, 26 Aug 2021 17:50:35 +0530 Subject: [PATCH] e2e: fix log msg in retryKubectlInput() e2elog.Logf("waiting for kubectl (%s -f $q args %s) to finish", action, args) changed to e2elog.Logf("waiting for kubectl (%s -f args %s) to finish", action, args) Signed-off-by: Rakshith R --- e2e/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.go b/e2e/utils.go index adf9f2fd9..7b2a22db1 100644 --- a/e2e/utils.go +++ b/e2e/utils.go @@ -1261,7 +1261,7 @@ func (ka kubectlAction) String() string { // no error occurred, or the timeout passed. func retryKubectlInput(namespace string, action kubectlAction, data string, t int, args ...string) error { timeout := time.Duration(t) * time.Minute - e2elog.Logf("waiting for kubectl (%s -f %q args %s) to finish", action, args) + e2elog.Logf("waiting for kubectl (%s -f args %s) to finish", action, args) start := time.Now() return wait.PollImmediate(poll, timeout, func() (bool, error) {