Patch for AMQ-950 to only create a JMX context if there is not a platform one

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@452350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-10-03 08:37:16 +00:00
parent 62cb1b6cb0
commit 917927fe6d
1 changed files with 2 additions and 1 deletions

View File

@ -296,7 +296,8 @@ public class ManagementContext implements Service{
if (result == null && createMBeanServer) {
result = createMBeanServer();
}
else {
if (result != null && createConnector) {
createConnector(result);
}
}