This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 58097e0 Make NsqProducerTest#testProducer more stable on builds.apache.org by increasing the timeout. 58097e0 is described below commit 58097e02e7a630111bd68bf634fc6c08fca0a46d Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Mon Apr 13 12:17:26 2020 +0200 Make NsqProducerTest#testProducer more stable on builds.apache.org by increasing the timeout. --- .../src/test/java/org/apache/camel/component/nsq/NsqProducerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-nsq/src/test/java/org/apache/camel/component/nsq/NsqProducerTest.java b/components/camel-nsq/src/test/java/org/apache/camel/component/nsq/NsqProducerTest.java index 7291fbe..783bf61 100644 --- a/components/camel-nsq/src/test/java/org/apache/camel/component/nsq/NsqProducerTest.java +++ b/components/camel-nsq/src/test/java/org/apache/camel/component/nsq/NsqProducerTest.java @@ -50,7 +50,7 @@ public class NsqProducerTest extends NsqTestSupport { }); consumer.start(); - lock.await(30, TimeUnit.SECONDS); + lock.await(60, TimeUnit.SECONDS); assertEquals(1, counter.get()); consumer.shutdown();