summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2011-09-19 09:42:17 +0000
committerKeith Wall <kwall@apache.org>2011-09-19 09:42:17 +0000
commit6aee053e30e5789ff453f5b61f40666db849a983 (patch)
tree70a29d584c2d6bdca9572d5e6a90804c17bcf559 /qpid/java
parent5c135fd01002bba45d2d0015b7c8dc8d30135d97 (diff)
downloadqpid-python-6aee053e30e5789ff453f5b61f40666db849a983.tar.gz
QPID-3493: FailoverMethodTest.testFailoverSingleDelay occasionally fails on slow CI box
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1172541 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java
index 98cdf94ac9..470fcefae3 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java
@@ -129,8 +129,8 @@ public class FailoverMethodTest extends QpidBrokerTestCase implements ExceptionL
assertTrue("Failover took less than 6 seconds", duration > 6000);
// Ensure we don't have delays before initial connection and reconnection.
- // We allow 1 second for initial connection and failover logic on top of 6s of sleep.
- assertTrue("Failover took more than 7 seconds:(" + duration + ")", duration < 7000);
+ // We allow 3 second for initial connection and failover logic on top of 6s of sleep.
+ assertTrue("Failover took more than 9 seconds:(" + duration + ")", duration < 9000);
}
catch (AMQException e)
{