summaryrefslogtreecommitdiff
path: root/qpid/java/bdbstore
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2014-10-03 10:29:53 +0000
committerKeith Wall <kwall@apache.org>2014-10-03 10:29:53 +0000
commit3a3ac8d9be19bde48d7ec56d78ef5306b85dae4d (patch)
tree29d76feb6d5b3e4028896d30637608b04a57673d /qpid/java/bdbstore
parent89ae6edf669364f29332ff71d3e380b12e16f636 (diff)
downloadqpid-python-3a3ac8d9be19bde48d7ec56d78ef5306b85dae4d.tar.gz
QPID-6131: [Java Broker] Mark virtualhosts that are being closed as UNAVAILABLE to prevent any new messaging connections being established
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1629177 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/bdbstore')
-rw-r--r--qpid/java/bdbstore/systests/src/test/java/org/apache/qpid/server/store/berkeleydb/replication/MultiNodeTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/bdbstore/systests/src/test/java/org/apache/qpid/server/store/berkeleydb/replication/MultiNodeTest.java b/qpid/java/bdbstore/systests/src/test/java/org/apache/qpid/server/store/berkeleydb/replication/MultiNodeTest.java
index 9e850714b0..38484b546f 100644
--- a/qpid/java/bdbstore/systests/src/test/java/org/apache/qpid/server/store/berkeleydb/replication/MultiNodeTest.java
+++ b/qpid/java/bdbstore/systests/src/test/java/org/apache/qpid/server/store/berkeleydb/replication/MultiNodeTest.java
@@ -166,8 +166,8 @@ public class MultiNodeTest extends QpidBrokerTestCase
// New connections should now fail as vhost will be unavailable
try
{
- getConnection(_negativeFailoverUrl);
- fail("Exception not thrown");
+ Connection unexpectedConnection = getConnection(_negativeFailoverUrl);
+ fail("Got unexpected connection to node in group without quorum " + unexpectedConnection);
}
catch (JMSException je)
{