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 8390a05f Increase cluster-leader-election test assertion timeout
8390a05f is described below
commit 8390a05f1df93d5ca90e1334c44ed1434ec8796c
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)");
});