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

ppalaga pushed a commit to branch 3.27.x-product
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit fc23905269a9d5340c4b12be6d196c78d10805ea
Author: James Netherton <[email protected]>
AuthorDate: Thu Jan 8 13:10:07 2026 +0000

    Increase cluster-leader-election test assertion timeout
---
 cluster-leader-election/src/test/java/org/acme/master/MasterTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 ef2edfd4..4f81826f 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
@@ -31,7 +31,7 @@ public class MasterTest {
 
     @Test
     public void testLog() {
-        await().atMost(10L, TimeUnit.SECONDS).pollDelay(1, 
TimeUnit.SECONDS).until(() -> {
+        await().atMost(30L, TimeUnit.SECONDS).pollDelay(1, 
TimeUnit.SECONDS).until(() -> {
             String log = new 
String(Files.readAllBytes(Paths.get("target/quarkus.log")), 
StandardCharsets.UTF_8);
             return log.contains("Clustered route (timer)");
         });

Reply via email to