You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2017/07/07 10:27:12 UTC

activemq-artemis git commit: ARTEMIS-1264 - fix amqp regression by supplying the remoting connection to the security manager

Repository: activemq-artemis
Updated Branches:
  refs/heads/master e07d40ce6 -> 004753cc5


ARTEMIS-1264 - fix amqp regression by supplying the remoting connection to the security manager


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

Branch: refs/heads/master
Commit: 004753cc539fe9a5faa0cc7d64b82b231430ea25
Parents: e07d40c
Author: gtully <ga...@gmail.com>
Authored: Fri Jul 7 11:24:05 2017 +0100
Committer: gtully <ga...@gmail.com>
Committed: Fri Jul 7 11:24:05 2017 +0100

----------------------------------------------------------------------
 .../artemis/protocol/amqp/proton/ProtonServerReceiverContext.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/004753cc/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/ProtonServerReceiverContext.java
----------------------------------------------------------------------
diff --git a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/ProtonServerReceiverContext.java b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/ProtonServerReceiverContext.java
index 66bdc54..2feb8da 100644
--- a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/ProtonServerReceiverContext.java
+++ b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/ProtonServerReceiverContext.java
@@ -156,7 +156,7 @@ public class ProtonServerReceiverContext extends ProtonInitializable implements
 
                      @Override
                      public RemotingConnection getRemotingConnection() {
-                        return null;
+                        return connection.connectionCallback.getProtonConnectionDelegate();
                      }
                   });
                } catch (ActiveMQSecurityException e) {