You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2022/08/18 05:27:36 UTC

[activemq] branch activemq-5.16.x updated: [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch activemq-5.16.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-5.16.x by this push:
     new 4818cf688 [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean
4818cf688 is described below

commit 4818cf688cba426a1fd22875ee5153e22434ca29
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Aug 16 16:43:02 2022 +0200

    [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean
    
    (cherry picked from commit 7159b4410baea64db104f1e06e70675446b71585)
---
 .../src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
index 4f80dc771..9c65c3b51 100644
--- a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
+++ b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
@@ -92,7 +92,7 @@ public interface BrokerViewMBean extends Service {
     @MBeanInfo("Number of messages that have been sent to the broker.")
     long getTotalEnqueueCount();
 
-    @MBeanInfo("Number of messages that have been acknowledged on the broker.")
+    @MBeanInfo("Number of messages that have been acknowledged or discarded on the broker.")
     long getTotalDequeueCount();
 
     @MBeanInfo("Number of message consumers subscribed to destinations on the broker.")