This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new e5b8237 NO-JIRA Increasing timeout on test and avoiding intermittent
failure
e5b8237 is described below
commit e5b8237d2b178f68c96c3b35db90f60ec6a38d96
Author: Clebert Suconic <[email protected]>
AuthorDate: Wed Apr 8 22:41:06 2020 -0400
NO-JIRA Increasing timeout on test and avoiding intermittent failure
---
.../tests/integration/stomp/StompWithRejectingInterceptorTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/StompWithRejectingInterceptorTest.java
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/StompWithRejectingInterceptorTest.java
index 736a56a..7de3544 100644
---
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/StompWithRejectingInterceptorTest.java
+++
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/StompWithRejectingInterceptorTest.java
@@ -56,7 +56,7 @@ public class StompWithRejectingInterceptorTest extends
StompTestBase {
conn.sendFrame(frame);
conn.disconnect();
- assertTrue(Wait.waitFor(() ->
IncomingStompFrameRejectInterceptor.interceptedFrames.size() == 3, 2000, 50));
+ assertTrue(Wait.waitFor(() ->
IncomingStompFrameRejectInterceptor.interceptedFrames.size() == 3, 10000, 50));
List<String> incomingCommands = new ArrayList<>(4);
incomingCommands.add("CONNECT");