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

[camel-quarkus-examples] branch camel-quarkus-main updated (fdbe006 -> 6d664cf)

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

jamesnetherton pushed a change to branch camel-quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


    from fdbe006  Upgrade Quarkiverse Artemis to 3.0.0
     new c1cb357  Disable cluster-leader-election native profile due to kubernetes-client incompatibility apache/camel-quarkus#4957
     new 6d664cf  Enable tests for cluster-leader-election example

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 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, 2 insertions(+), 4 deletions(-)


[camel-quarkus-examples] 01/02: Disable cluster-leader-election native profile due to kubernetes-client incompatibility apache/camel-quarkus#4957

Posted by ja...@apache.org.
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

commit c1cb3572acad14a105cbf9b5a83004a2a9c7127a
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Jun 13 07:32:39 2023 +0100

    Disable cluster-leader-election native profile due to kubernetes-client incompatibility apache/camel-quarkus#4957
---
 cluster-leader-election/pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 5ad928b..01d949c 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -257,6 +257,7 @@
     </build>
 
     <profiles>
+        <!-- https://github.com/apache/camel-quarkus/issues/4957
         <profile>
             <id>native</id>
             <activation>
@@ -289,6 +290,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>kubernetes</id>
             <activation>


[camel-quarkus-examples] 02/02: Enable tests for cluster-leader-election example

Posted by ja...@apache.org.
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

commit 6d664cf9687f7de74bc75f23bd4cf52bdeef2edd
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Jun 13 07:33:44 2023 +0100

    Enable tests for cluster-leader-election example
---
 cluster-leader-election/src/test/java/org/acme/master/MasterIT.java   | 2 --
 cluster-leader-election/src/test/java/org/acme/master/MasterTest.java | 2 --
 2 files changed, 4 deletions(-)

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 ec984dc..d36ce3a 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,9 +17,7 @@
 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 faba922..ef2edfd 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,12 +22,10 @@ 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 {