mirror of https://github.com/apache/activemq.git
https://issues.apache.org/activemq/browse/AMQ-2654 - subscription info space character
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@924353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de04214bb5
commit
af65ba7242
|
@ -201,7 +201,7 @@ public class ManagedRegionBroker extends RegionBroker {
|
|||
String persistentMode = "persistentMode=";
|
||||
String consumerId = "";
|
||||
if (sub.getConsumerInfo().isDurable()) {
|
||||
persistentMode += "Durable, subscriptionID=" + JMXSupport.encodeObjectNamePart(sub.getConsumerInfo().getSubscriptionName());
|
||||
persistentMode += "Durable,subscriptionID=" + JMXSupport.encodeObjectNamePart(sub.getConsumerInfo().getSubscriptionName());
|
||||
} else {
|
||||
persistentMode += "Non-Durable";
|
||||
if (sub.getConsumerInfo() != null && sub.getConsumerInfo().getConsumerId() != null) {
|
||||
|
|
Loading…
Reference in New Issue