You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/10/15 09:55:32 UTC

[camel] branch main updated: CAMEL-18608: Fix the tests of type KafkaConsumerIdempotentTestSupport (p2)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new e0e604366d0 CAMEL-18608: Fix the tests of type KafkaConsumerIdempotentTestSupport (p2)
e0e604366d0 is described below

commit e0e604366d04e1d57e826032ede648f712fdb6b3
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Sat Oct 15 11:55:11 2022 +0200

    CAMEL-18608: Fix the tests of type KafkaConsumerIdempotentTestSupport (p2)
---
 .../component/kafka/integration/KafkaConsumerIdempotentTestSupport.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentTestSupport.java b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentTestSupport.java
index 7e6dc62ffd2..f556d542ae4 100644
--- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentTestSupport.java
+++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentTestSupport.java
@@ -48,7 +48,7 @@ public abstract class KafkaConsumerIdempotentTestSupport extends BaseEmbeddedKaf
 
     protected void doRun(MockEndpoint mockEndpoint, int size) {
 
-        await().atMost(1, TimeUnit.MINUTES).untilAsserted(
+        await().atMost(5, TimeUnit.MINUTES).untilAsserted(
                 () -> assertEquals(size, mockEndpoint.getReceivedExchanges().size()));
 
         Map<String, Object> headers = mockEndpoint.getExchanges().get(0).getIn().getHeaders();