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 | d07578cac7759bdae0a4ab05bdeb3b2358f80689 (patch) | |
| tree | 5efaabb135d2434476bd5b789105842be1609543 /qpid/java/management/eclipse-plugin | |
| parent | 9e12a1435f15bfe6fea02af060a806a5ca62d68c (diff) | |
| download | qpid-python-d07578cac7759bdae0a4ab05bdeb3b2358f80689.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@946199 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/management/eclipse-plugin')
| -rw-r--r-- | qpid/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/qpid/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java b/qpid/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java index 5469bfad5f..8295502439 100644 --- a/qpid/java/management/eclipse-plugin/src/test/java/org/apache/qpid/management/ui/ManagementConsoleTest.java +++ b/qpid/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(); |
