This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch camel-quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
The following commit(s) were added to refs/heads/camel-quarkus-main by this
push:
new 69077d3 Disable cluster-leader-election tests due to
kubernetes-client incompatibility apache/camel-quarkus#4651
69077d3 is described below
commit 69077d3027989ed3bc5c6e91c818df16233dc45f
Author: James Netherton <[email protected]>
AuthorDate: Thu Mar 16 07:39:04 2023 +0000
Disable cluster-leader-election tests due to kubernetes-client
incompatibility apache/camel-quarkus#4651
---
cluster-leader-election/pom.xml | 2 ++
cluster-leader-election/src/test/java/org/acme/master/MasterIT.java | 2 ++
cluster-leader-election/src/test/java/org/acme/master/MasterTest.java | 2 ++
3 files changed, 6 insertions(+)
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 17b4abe..25068bc 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -257,6 +257,7 @@
</build>
<profiles>
+ <!-- TODO: https://github.com/apache/camel-quarkus/issues/4651
<profile>
<id>native</id>
<activation>
@@ -289,6 +290,7 @@
</plugins>
</build>
</profile>
+ -->
<profile>
<id>kubernetes</id>
<activation>
diff --git
a/cluster-leader-election/src/test/java/org/acme/master/MasterIT.java
b/cluster-leader-election/src/test/java/org/acme/master/MasterIT.java
index d36ce3a..ec984dc 100644
--- a/cluster-leader-election/src/test/java/org/acme/master/MasterIT.java
+++ b/cluster-leader-election/src/test/java/org/acme/master/MasterIT.java
@@ -17,7 +17,9 @@
package org.acme.master;
import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
+@Disabled("https://github.com/apache/camel-quarkus/issues/4651")
@QuarkusIntegrationTest
class MasterIT extends MasterTest {
}
diff --git
a/cluster-leader-election/src/test/java/org/acme/master/MasterTest.java
b/cluster-leader-election/src/test/java/org/acme/master/MasterTest.java
index ef2edfd..faba922 100644
--- a/cluster-leader-election/src/test/java/org/acme/master/MasterTest.java
+++ b/cluster-leader-election/src/test/java/org/acme/master/MasterTest.java
@@ -22,10 +22,12 @@ import java.nio.file.Paths;
import java.util.concurrent.TimeUnit;
import io.quarkus.test.junit.QuarkusTest;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.awaitility.Awaitility.await;
+@Disabled("https://github.com/apache/camel-quarkus/issues/4651")
@QuarkusTest
public class MasterTest {