You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2018/01/23 21:14:35 UTC

[1/2] activemq-artemis git commit: This closes #1812

Repository: activemq-artemis
Updated Branches:
  refs/heads/master acd20790f -> dafcbb70a


This closes #1812


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/dafcbb70
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/dafcbb70
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/dafcbb70

Branch: refs/heads/master
Commit: dafcbb70a3eddde2fadf4883aaaecc347f99a8a5
Parents: acd2079 98cf865
Author: Clebert Suconic <cl...@apache.org>
Authored: Tue Jan 23 16:14:08 2018 -0500
Committer: Clebert Suconic <cl...@apache.org>
Committed: Tue Jan 23 16:14:08 2018 -0500

----------------------------------------------------------------------
 .../core/management/impl/view/predicate/QueueFilterPredicate.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[2/2] activemq-artemis git commit: ARTEMIS-1399 fix comparison

Posted by cl...@apache.org.
ARTEMIS-1399 fix comparison


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/98cf8651
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/98cf8651
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/98cf8651

Branch: refs/heads/master
Commit: 98cf8651cf1976b87b2b7acc323562fdc680124f
Parents: acd2079
Author: Justin Bertram <jb...@apache.org>
Authored: Tue Jan 23 11:20:09 2018 -0600
Committer: Clebert Suconic <cl...@apache.org>
Committed: Tue Jan 23 16:14:08 2018 -0500

----------------------------------------------------------------------
 .../core/management/impl/view/predicate/QueueFilterPredicate.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/98cf8651/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/predicate/QueueFilterPredicate.java
----------------------------------------------------------------------
diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/predicate/QueueFilterPredicate.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/predicate/QueueFilterPredicate.java
index e1ddd20..d8209a7 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/predicate/QueueFilterPredicate.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/predicate/QueueFilterPredicate.java
@@ -53,7 +53,7 @@ public class QueueFilterPredicate extends ActiveMQFilterPredicate<QueueControl>
             case CONSUMER_ID:
                Queue q = server.locateQueue(new SimpleString(queue.getName()));
                for (Consumer consumer : q.getConsumers()) {
-                  if (value.equals(consumer.sequentialID()))
+                  if (matches(consumer.sequentialID()))
                      return true;
                }
                return false;