This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 679bc1a ARTEMIS-2698 Fixing Typos on exposed group properties
679bc1a is described below
commit 679bc1a3a02860a5a9d33d797f424a66acf91d62
Author: Clebert Suconic <[email protected]>
AuthorDate: Wed Apr 8 16:00:26 2020 -0400
ARTEMIS-2698 Fixing Typos on exposed group properties
---
.../activemq/artemis/core/management/impl/QueueControlImpl.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/QueueControlImpl.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/QueueControlImpl.java
index 584ea96..8015758 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/QueueControlImpl.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/QueueControlImpl.java
@@ -1711,7 +1711,7 @@ public class QueueControlImpl extends AbstractControl
implements QueueControl {
clearIO();
try {
- return queue.getMaxConsumers();
+ return queue.getGroupBuckets();
} finally {
blockOnIO();
}
@@ -1720,7 +1720,7 @@ public class QueueControlImpl extends AbstractControl
implements QueueControl {
@Override
public String getGroupFirstKey() {
if (AuditLogger.isEnabled()) {
- AuditLogger.getMaxConsumers(queue);
+ AuditLogger.getGroupFirstKey(queue);
}
checkStarted();