diff options
author | Gordon Sim <gsim@apache.org> | 2011-02-15 14:17:45 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2011-02-15 14:17:45 +0000 |
commit | 6a87cd223a386526ccca0a1ba6f0bdd1c4320ba1 (patch) | |
tree | 15ca8c59c1a9a6786ab08690d7acf6320c1e1dc2 /cpp/src/qpid/cluster/Connection.cpp | |
parent | 87381a0bae2b890688db1597d2d6a144935498a0 (diff) | |
download | qpid-python-6a87cd223a386526ccca0a1ba6f0bdd1c4320ba1.tar.gz |
QPID-3002: Configurable threshold alerts for queues
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1070913 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index 0582945a9c..e9b718e6de 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -529,7 +529,7 @@ void Connection::deliveryRecord(const string& qname, m = getUpdateMessage(); m.queue = queue.get(); m.position = position; - if (enqueued) queue->enqueued(m); //inform queue of the message + if (enqueued) queue->updateEnqueued(m); //inform queue of the message } else { // Message at original position in original queue m = queue->find(position); } |