diff options
author | Robert Gemmell <robbie@apache.org> | 2010-05-19 14:15:42 +0000 |
---|---|---|
committer | Robert Gemmell <robbie@apache.org> | 2010-05-19 14:15:42 +0000 |
commit | c3794c1cc26670a64a0970196ad98ad18759ef3a (patch) | |
tree | cfd6eccf94f4c077b95a91cffd9a1f20940af66c /java/management/eclipse-plugin/src | |
parent | ac40cb15d7a445b9c80b989a0ed81cfa7308f04b (diff) | |
download | qpid-python-c3794c1cc26670a64a0970196ad98ad18759ef3a.tar.gz |
QPID-2422: add a boolean exclusive property to queues, update the DerbyStore and virtualhost recovery process to allow restoring exclusivity. Also persist and restore queue arguments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@946199 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/management/eclipse-plugin/src')
-rw-r--r-- | java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java b/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java index 5469bfad5f..8295502439 100644 --- a/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java +++ b/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java @@ -70,8 +70,8 @@ public class ManagementConsoleTest extends TestCase { // If this test fails due to changes in the broker code, // then the constants in the Constants.java shoule be updated accordingly - AMQQueue queue = AMQQueueFactory.createAMQQueueImpl(new AMQShortString("testQueueForManagement"), false, null, false, _virtualHost, - null); + AMQQueue queue = AMQQueueFactory.createAMQQueueImpl(new AMQShortString("testQueueForManagement"), false, null, false, false, + _virtualHost, null); AMQManagedObject mbean = new AMQQueueMBean(queue); MBeanInfo mbeanInfo = mbean.getMBeanInfo(); |