You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kw...@apache.org on 2018/03/15 11:01:48 UTC

[3/3] qpid-broker-j git commit: QPID-8115: [Broker-J][AMQP 1.0] Fix symbolic descriptor for 'no local filter'

QPID-8115: [Broker-J][AMQP 1.0] Fix symbolic descriptor for 'no local filter'


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/ce05c23a
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/ce05c23a
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/ce05c23a

Branch: refs/heads/7.0.x
Commit: ce05c23a52ccfe539d75d05ab45f1bff0f668ef8
Parents: 1b860ff
Author: Alex Rudyy <or...@apache.org>
Authored: Wed Feb 28 20:37:50 2018 +0000
Committer: Keith Wall <kw...@apache.org>
Committed: Thu Mar 15 10:59:37 2018 +0000

----------------------------------------------------------------------
 .../v1_0/type/messaging/codec/NoLocalFilterConstructor.java     | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/ce05c23a/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/type/messaging/codec/NoLocalFilterConstructor.java
----------------------------------------------------------------------
diff --git a/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/type/messaging/codec/NoLocalFilterConstructor.java b/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/type/messaging/codec/NoLocalFilterConstructor.java
index 86052c5..2774cde 100644
--- a/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/type/messaging/codec/NoLocalFilterConstructor.java
+++ b/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/type/messaging/codec/NoLocalFilterConstructor.java
@@ -33,7 +33,10 @@ public class NoLocalFilterConstructor extends AbstractDescribedTypeConstructor<N
 {
     private static final Object[] DESCRIPTORS =
     {
-            Symbol.valueOf("apache.org:jms-no-local-filter:list"), UnsignedLong.valueOf(0x0000468C00000003L)
+            Symbol.valueOf("apache.org:no-local-filter:list"),
+            UnsignedLong.valueOf(0x0000468C00000003L),
+            // This incorrect value was originally specified here - retaining solely for backwards compatibility
+            Symbol.valueOf("apache.org:jms-no-local-filter:list")
     };
 
     private static final NoLocalFilterConstructor INSTANCE = new NoLocalFilterConstructor();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org