git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1074300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2011-02-24 21:25:08 +00:00
parent a5fc6dd999
commit 3e895c6e95
1 changed files with 4 additions and 4 deletions

View File

@ -189,7 +189,7 @@ public class CamelEndpointLoader implements CamelContextAware {
String queueUri = getQueueUri(queue);
// lur cache of endpoints so they will disappear in time
// this feature needs a new component api - list available endpoints
//camelContext.removeEndpoints(queueUri);
camelContext.removeEndpoints(queueUri);
}
protected void addTopic(ActiveMQTopic topic) throws Exception {
@ -207,6 +207,6 @@ public class CamelEndpointLoader implements CamelContextAware {
String topicUri = getTopicUri(topic);
// lur cache of endpoints so they will disappear in time
// this feature needs a new component api - list available endpoints
//camelContext.removeEndpoints(topicUri);
camelContext.removeEndpoints(topicUri);
}
}