This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 2e6f28f2216ae1d80166db98a119100d8da521fb Author: Benoit Tellier <[email protected]> AuthorDate: Wed Jun 26 14:31:38 2019 +0700 MAILBOX-374 Increase sleep time while await listener execution One second turned out to be a bit short for executing the related listeners on all environments. --- .../james/mpt/imapmailbox/rabbitmq/host/RabbitMQEventBusHostSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpt/impl/imap-mailbox/rabbitmq/src/test/java/org/apache/james/mpt/imapmailbox/rabbitmq/host/RabbitMQEventBusHostSystem.java b/mpt/impl/imap-mailbox/rabbitmq/src/test/java/org/apache/james/mpt/imapmailbox/rabbitmq/host/RabbitMQEventBusHostSystem.java index 5747243..87d6fe5 100644 --- a/mpt/impl/imap-mailbox/rabbitmq/src/test/java/org/apache/james/mpt/imapmailbox/rabbitmq/host/RabbitMQEventBusHostSystem.java +++ b/mpt/impl/imap-mailbox/rabbitmq/src/test/java/org/apache/james/mpt/imapmailbox/rabbitmq/host/RabbitMQEventBusHostSystem.java @@ -134,7 +134,7 @@ public class RabbitMQEventBusHostSystem extends JamesImapHostSystem { @Override protected void await() { try { - TimeUnit.SECONDS.sleep(1); + TimeUnit.SECONDS.sleep(5); } catch (InterruptedException e) { throw new RuntimeException(e); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
