diff options
| author | Keith Wall <kwall@apache.org> | 2011-09-19 09:42:17 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2011-09-19 09:42:17 +0000 |
| commit | feac1b146ed7499f999170b6901e418823c4ef45 (patch) | |
| tree | 78636b263d46189f2f57f547853cfccb4af7487e | |
| parent | 6dda217cc8e3f650676464822cbc49e32f75f0ef (diff) | |
| download | qpid-python-feac1b146ed7499f999170b6901e418823c4ef45.tar.gz | |
QPID-3493: FailoverMethodTest.testFailoverSingleDelay occasionally fails on slow CI box
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1172541 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java b/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java index 98cdf94ac9..470fcefae3 100644 --- a/java/systests/src/main/java/org/apache/qpid/server/failover/FailoverMethodTest.java +++ b/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) { |
