You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/06/13 09:35:07 UTC

[camel-k] branch main updated: fix(e2e): remove workaround pre 1.12.1

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 6a1f241c6 fix(e2e): remove workaround pre 1.12.1
6a1f241c6 is described below

commit 6a1f241c66a87382efc1a87664596ac54d37d3e6
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon Jun 12 15:46:46 2023 +0200

    fix(e2e): remove workaround pre 1.12.1
    
    Closes #4478
---
 e2e/install/upgrade/cli_upgrade_test.go | 3 ---
 e2e/install/upgrade/olm_upgrade_test.go | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/e2e/install/upgrade/cli_upgrade_test.go b/e2e/install/upgrade/cli_upgrade_test.go
index c7279d976..8e9d769c9 100644
--- a/e2e/install/upgrade/cli_upgrade_test.go
+++ b/e2e/install/upgrade/cli_upgrade_test.go
@@ -60,9 +60,6 @@ func TestCLIOperatorUpgrade(t *testing.T) {
 			"--force",
 			"--base-image",
 			defaults.BaseImage(),
-			// TODO: remove GOMAXPROCS when https://github.com/apache/camel-k/issues/4312 is closed
-			"--operator-env-vars",
-			"GOMAXPROCS=1",
 		).Execute()).To(Succeed())
 
 		// Check the operator pod is running
diff --git a/e2e/install/upgrade/olm_upgrade_test.go b/e2e/install/upgrade/olm_upgrade_test.go
index 29276ae96..64bcf57b2 100644
--- a/e2e/install/upgrade/olm_upgrade_test.go
+++ b/e2e/install/upgrade/olm_upgrade_test.go
@@ -91,9 +91,6 @@ func TestOLMOperatorUpgrade(t *testing.T) {
 			"--olm-source", catalogSourceName,
 			"--olm-source-namespace", ns,
 			"--base-image", defaults.BaseImage(),
-			// TODO: remove GOMAXPROCS when https://github.com/apache/camel-k/issues/4312 is closed
-			"--operator-env-vars",
-			"GOMAXPROCS=1",
 		}
 
 		if prevUpdateChannel != "" {