[
https://issues.apache.org/jira/browse/ARTEMIS-1364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16253506#comment-16253506
]
ASF GitHub Bot commented on ARTEMIS-1364:
-----------------------------------------
Github user mtaylor commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1628#discussion_r151136266
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServerConsumerImpl.java
---
@@ -1387,4 +1387,49 @@ public boolean isBrowsed() {
return b;
}
}
+
+ @Override
+ public long getSequentialID() {
+ return sequentialID;
+ }
+
+ @Override
+ public SimpleString getQueueName() {
+ return getQueue().getName();
+ }
+
+ @Override
+ public RoutingType getQueueType() {
+ return getQueue().getRoutingType();
+ }
+
+ @Override
+ public SimpleString getQueueAddress() {
+ return getQueue().getAddress();
+ }
+
+ @Override
+ public String getSessionName() {
+ return server.getSessionByID(getSessionID()).getName();
+ }
+
+ @Override
+ public String getConnectionClientID() {
+ return
server.getSessionByID(getSessionID()).getRemotingConnection().getClientID();
+ }
--- End diff --
Same comment as above and in all other places you are doing the lookup.
> Sorting is not working in new hawtio console filter
> ---------------------------------------------------
>
> Key: ARTEMIS-1364
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1364
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Components: Web Console
> Affects Versions: 2.3.0
> Environment: latest upstream build from source code
> Reporter: Michal Toth
>
> When new filter is applied on addresses/queues, I am unable to sort at all.
> Seems like the sorting button is completely ignored.
> Create 100 queues, filter some of them, hit sorting button asc/desc above
> header in column.
> Nothing happens.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)