mirror of https://github.com/apache/activemq.git
fix test case after changes in https://issues.apache.org/jira/browse/AMQ-4237 broke the test's MBean lookup
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1428983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a6ebc20a3
commit
8e9896825f
|
@ -28,12 +28,7 @@ import javax.jms.QueueConnection;
|
|||
import javax.jms.QueueSession;
|
||||
import javax.jms.Session;
|
||||
import javax.jms.TextMessage;
|
||||
import javax.management.MBeanServerConnection;
|
||||
import javax.management.MBeanServerInvocationHandler;
|
||||
import javax.management.ObjectName;
|
||||
import javax.management.remote.JMXConnector;
|
||||
import javax.management.remote.JMXConnectorFactory;
|
||||
import javax.management.remote.JMXServiceURL;
|
||||
|
||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||
import org.apache.activemq.broker.BrokerService;
|
||||
|
@ -132,7 +127,7 @@ public class JMXRemoveQueueThenSendIgnoredTest {
|
|||
|
||||
private int numberOfMessages() throws Exception {
|
||||
ObjectName queueViewMBeanName = new ObjectName(
|
||||
domain + ":Type=Queue,Destination=myqueue,BrokerName=dev");
|
||||
domain + ":destinationType=Queue,destinationName=myqueue,type=Broker,brokerName=dev");
|
||||
QueueViewMBean queue = (QueueViewMBean)
|
||||
brokerService.getManagementContext().newProxyInstance(queueViewMBeanName, QueueViewMBean.class, true);
|
||||
long size = queue.getQueueSize();
|
||||
|
|
Loading…
Reference in New Issue