Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9088D4E45 for ; Wed, 8 Jun 2011 21:59:24 +0000 (UTC) Received: (qmail 97651 invoked by uid 500); 8 Jun 2011 21:59:24 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 97616 invoked by uid 500); 8 Jun 2011 21:59:24 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 97608 invoked by uid 99); 8 Jun 2011 21:59:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jun 2011 21:59:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jun 2011 21:59:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7AB0C23889EA; Wed, 8 Jun 2011 21:59:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1133579 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java Date: Wed, 08 Jun 2011 21:59:01 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110608215901.7AB0C23889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Wed Jun 8 21:59:01 2011 New Revision: 1133579 URL: http://svn.apache.org/viewvc?rev=1133579&view=rev Log: https://issues.apache.org/jira/browse/AMQ-3337 Use the same case as the Topic and Queue destinationType filters. Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java?rev=1133579&r1=1133578&r2=1133579&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java Wed Jun 8 21:59:01 2011 @@ -707,7 +707,7 @@ public class ManagedRegionBroker extends String destinationName = "destinationName="; if (producerInfo.getDestination() == null) { - destinationType += "dynamic"; + destinationType += "Dynamic"; destinationName = null; } else { destinationType += producerInfo.getDestination().getDestinationTypeAsString();