This is an automated email from the ASF dual-hosted git repository. matthieu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 8aed6ac200905df38fbbfdd6c51145e9b4979704 Author: Jean Helou <[email protected]> AuthorDate: Fri Feb 5 09:17:18 2021 +0100 JAMES-3225 increase wait for ready timeout for apache CI --- .../java/org/apache/james/transport/mailets/amqp/AmqpExtension.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mailet/integration-testing/src/test/java/org/apache/james/transport/mailets/amqp/AmqpExtension.java b/server/mailet/integration-testing/src/test/java/org/apache/james/transport/mailets/amqp/AmqpExtension.java index f4ac1e2..d2115cb 100644 --- a/server/mailet/integration-testing/src/test/java/org/apache/james/transport/mailets/amqp/AmqpExtension.java +++ b/server/mailet/integration-testing/src/test/java/org/apache/james/transport/mailets/amqp/AmqpExtension.java @@ -125,7 +125,7 @@ public class AmqpExtension implements BeforeAllCallback, AfterAllCallback, After private void waitingForRabbitToBeReady(ConnectionFactory factory) { Awaitility .await() - .atMost(30, TimeUnit.SECONDS) + .atMost(60, TimeUnit.SECONDS) .with() .pollInterval(10, TimeUnit.MILLISECONDS) .until(() -> isReady(factory)); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
