diff options
| author | Ted Ross <tross@apache.org> | 2010-03-05 21:10:26 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-03-05 21:10:26 +0000 |
| commit | 0c680d094fe9090fd60d7a76dd86416234547733 (patch) | |
| tree | e3c7a81c17d0489e6cd672ea7e83ac8f1d5b1c89 /cpp/src/qpid/broker/Connection.cpp | |
| parent | 398343948b60572569c3b7b9dc535a40075d65d7 (diff) | |
| download | qpid-python-0c680d094fe9090fd60d7a76dd86416234547733.tar.gz | |
Fix QPID-2435. This patch removes the "publishNow" feature from the broker agent.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@919619 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Connection.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Connection.cpp b/cpp/src/qpid/broker/Connection.cpp index ca018ce4f8..2bb68b9f2d 100644 --- a/cpp/src/qpid/broker/Connection.cpp +++ b/cpp/src/qpid/broker/Connection.cpp @@ -101,7 +101,7 @@ Connection::Connection(ConnectionOutputHandler* out_, Broker& broker_, const std if (agent != 0) { mgmtObject = new _qmf::Connection(agent, this, parent, mgmtId, !isLink, false); mgmtObject->set_shadow(shadow); - agent->addObject(mgmtObject, objectId, true); + agent->addObject(mgmtObject, objectId); } ConnectionState::setUrl(mgmtId); } |
