You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ts...@apache.org on 2022/10/18 04:16:49 UTC

[camel-k] 01/03: fix(e2e): fix minor issue in e2e upgrade util.go

This is an automated email from the ASF dual-hosted git repository.

tsato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 3eee9ee9ccc514627e4f3658bfa27a47e1cf2783
Author: Tadayoshi Sato <sa...@gmail.com>
AuthorDate: Fri Oct 14 13:15:20 2022 +0900

    fix(e2e): fix minor issue in e2e upgrade util.go
---
 e2e/namespace/upgrade/util.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/e2e/namespace/upgrade/util.go b/e2e/namespace/upgrade/util.go
index 7707ca72c..771d09cac 100644
--- a/e2e/namespace/upgrade/util.go
+++ b/e2e/namespace/upgrade/util.go
@@ -141,7 +141,7 @@ func catalogSourcePod(ns, csName string) func() *corev1.Pod {
 }
 
 func catalogSourcePodRunning(ns, csName string) error {
-	podFunc := catalogSourcePod(ns, installCatalogSourceName)
+	podFunc := catalogSourcePod(ns, csName)
 
 	for i := 1; i < 5; i++ {
 		csPod := podFunc()