You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2018/02/28 20:38:03 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/8df4ff38
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/8df4ff38
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/8df4ff38

Branch: refs/heads/master
Commit: 8df4ff38b30e7277706976defdfefb6680d029df
Parents: 359b6ff
Author: Alex Rudyy <or...@apache.org>
Authored: Wed Feb 28 20:37:50 2018 +0000
Committer: Alex Rudyy <or...@apache.org>
Committed: Wed Feb 28 20:37:50 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/8df4ff38/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