diff options
author | Charles E. Rolke <chug@apache.org> | 2012-09-07 20:24:43 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2012-09-07 20:24:43 +0000 |
commit | 4ea8b46602b10fcaf817378daa7254f959d633cf (patch) | |
tree | 3d7ff5da997148ec1fbecc37d7048cbb5f3bbd1a /cpp/src/qpid/broker/Connection.cpp | |
parent | 1e49b9a6e59c9a767cbd573a54656fba2e4329dd (diff) | |
download | qpid-python-4ea8b46602b10fcaf817378daa7254f959d633cf.tar.gz |
QPID-4142 C++ Broker connection counting. Revert r1371772 which applied only to 0.18 and is obsolete on trunk.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1382155 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/broker/Connection.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/src/qpid/broker/Connection.cpp b/cpp/src/qpid/broker/Connection.cpp index e68c906cc2..8d250a32e5 100644 --- a/cpp/src/qpid/broker/Connection.cpp +++ b/cpp/src/qpid/broker/Connection.cpp @@ -25,7 +25,6 @@ #include "qpid/broker/Bridge.h" #include "qpid/broker/Broker.h" #include "qpid/broker/Queue.h" -#include "qpid/broker/AclModule.h" #include "qpid/sys/SecuritySettings.h" #include "qpid/sys/ClusterSafe.h" @@ -279,13 +278,6 @@ void Connection::notifyConnectionForced(const string& text) void Connection::setUserId(const string& userId) { - // Account for changing userId - AclModule* acl = broker.getAcl(); - if (acl) - { - acl->setUserId(*this, userId); - } - ConnectionState::setUserId(userId); // In a cluster, the cluster code will raise the connect event // when the connection is replicated to the cluster. |