This is an automated email from the ASF dual-hosted git repository.
gtully pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new c7b672d ARTEMIS-3365 - fix intermittent ci failure on test
c7b672d is described below
commit c7b672d8b9c4764785232636d1490d28ade67e32
Author: gtully <[email protected]>
AuthorDate: Thu Sep 2 12:09:31 2021 +0100
ARTEMIS-3365 - fix intermittent ci failure on test
---
.../activemq/artemis/core/server/balancing/pools/PoolTestBase.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/artemis-server/src/test/java/org/apache/activemq/artemis/core/server/balancing/pools/PoolTestBase.java
b/artemis-server/src/test/java/org/apache/activemq/artemis/core/server/balancing/pools/PoolTestBase.java
index 1f7505e..c3edd97 100644
---
a/artemis-server/src/test/java/org/apache/activemq/artemis/core/server/balancing/pools/PoolTestBase.java
+++
b/artemis-server/src/test/java/org/apache/activemq/artemis/core/server/balancing/pools/PoolTestBase.java
@@ -28,7 +28,7 @@ public abstract class PoolTestBase {
public static final int MULTIPLE_TARGETS = 10;
public static final int CHECK_PERIOD = 100;
- public static final int CHECK_TIMEOUT = 2 * CHECK_PERIOD;
+ public static final int CHECK_TIMEOUT = 10 * CHECK_PERIOD;
protected abstract Pool createPool(TargetFactory targetFactory, int
targets);