diff options
| author | Ted Ross <tross@apache.org> | 2012-11-20 17:46:05 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2012-11-20 17:46:05 +0000 |
| commit | beef0c686777b44c2cc7a90cd2f0b9d73bb39570 (patch) | |
| tree | ef05c389edc5c739bc2ae63ca7ce71906ce09476 /cpp/src/qpid/broker/QueueFlowLimit.cpp | |
| parent | 5aac7f448a513687dca2be93996c1d645fb668f7 (diff) | |
| download | qpid-python-beef0c686777b44c2cc7a90cd2f0b9d73bb39570.tar.gz | |
QPID-4449 - Fixed the API in qpid::management::Manageable to remain backward compatible.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1411761 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/QueueFlowLimit.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/QueueFlowLimit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/QueueFlowLimit.cpp b/cpp/src/qpid/broker/QueueFlowLimit.cpp index 944cc7e838..9d6053669b 100644 --- a/cpp/src/qpid/broker/QueueFlowLimit.cpp +++ b/cpp/src/qpid/broker/QueueFlowLimit.cpp @@ -78,7 +78,7 @@ QueueFlowLimit::QueueFlowLimit(Queue *_queue, if (queue->getSettings().maxDepth.hasCount()) maxCount = queue->getSettings().maxDepth.getCount(); if (queue->getSettings().maxDepth.hasCount()) maxSize = queue->getSettings().maxDepth.getSize(); broker = queue->getBroker(); - queueMgmtObj = boost::dynamic_pointer_cast<_qmfBroker::Queue> (queue->GetManagementObject()); + queueMgmtObj = boost::dynamic_pointer_cast<_qmfBroker::Queue> (queue->GetManagementObjectShared()); if (queueMgmtObj) { queueMgmtObj->set_flowStopped(isFlowControlActive()); } |
