[jboss-cvs] JBoss Messaging SVN: r4899 - trunk/src/main/org/jboss/messaging/jms/server/impl.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Aug 29 17:41:40 EDT 2008


Author: clebert.suconic at jboss.com
Date: 2008-08-29 17:41:39 -0400 (Fri, 29 Aug 2008)
New Revision: 4899

Modified:
   trunk/src/main/org/jboss/messaging/jms/server/impl/JMSServerDeployer.java
Log:
JBMESSAGING-1413 - disabling the removes from now


Modified: trunk/src/main/org/jboss/messaging/jms/server/impl/JMSServerDeployer.java
===================================================================
--- trunk/src/main/org/jboss/messaging/jms/server/impl/JMSServerDeployer.java	2008-08-29 18:38:16 UTC (rev 4898)
+++ trunk/src/main/org/jboss/messaging/jms/server/impl/JMSServerDeployer.java	2008-08-29 21:41:39 UTC (rev 4899)
@@ -343,12 +343,14 @@
       else if (node.getNodeName().equals(QUEUE_NODE_NAME))
       {
          String queueName = node.getAttributes().getNamedItem(getKeyAttribute()).getNodeValue();
-         jmsServerManager.destroyQueue(queueName);
+         //TODO: https://jira.jboss.org/jira/browse/JBMESSAGING-1413
+         //jmsServerManager.destroyQueue(queueName);
       }
       else if (node.getNodeName().equals(TOPIC_NODE_NAME))
       {
          String topicName = node.getAttributes().getNamedItem(getKeyAttribute()).getNodeValue();
-         jmsServerManager.destroyTopic(topicName);
+         //TODO: https://jira.jboss.org/jira/browse/JBMESSAGING-1413
+         //jmsServerManager.destroyTopic(topicName);
       }
    }
 




More information about the jboss-cvs-commits mailing list