diff options
author | Ted Ross <tross@apache.org> | 2008-06-02 16:01:51 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2008-06-02 16:01:51 +0000 |
commit | 40c8b6f844ce64fc4245e5f91e6b1eaea2fc9e94 (patch) | |
tree | 80438fbfb8739e9189fdad70d8271ae2ca8d26f4 /cpp/src/qpid/broker/XmlExchange.cpp | |
parent | e1c0b830b67e68be71e65ef18657e746ed6b971f (diff) | |
download | qpid-python-40c8b6f844ce64fc4245e5f91e6b1eaea2fc9e94.tar.gz |
QPID-1113 Management cleanup and performance enhancements
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@662470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/XmlExchange.cpp')
-rw-r--r-- | cpp/src/qpid/broker/XmlExchange.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/XmlExchange.cpp b/cpp/src/qpid/broker/XmlExchange.cpp index 1d8f2ae8d8..8c4d4f79a4 100644 --- a/cpp/src/qpid/broker/XmlExchange.cpp +++ b/cpp/src/qpid/broker/XmlExchange.cpp @@ -97,7 +97,7 @@ bool XmlExchange::bind(Queue::shared_ptr queue, const string& routingKey, const QPID_LOG(trace, "Bound successfully with query: " << queryText ); if (mgmtExchange.get() != 0) { - mgmtExchange->inc_bindings (); + mgmtExchange->inc_bindingCount(); } return true; } else{ @@ -128,7 +128,7 @@ bool XmlExchange::unbind(Queue::shared_ptr queue, const string& routingKey, cons bindingsMap.erase(routingKey); } if (mgmtExchange.get() != 0) { - mgmtExchange->dec_bindings (); + mgmtExchange->dec_bindingCount(); } return true; } else { |