diff options
| author | Alan Conway <aconway@apache.org> | 2011-04-07 19:37:10 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2011-04-07 19:37:10 +0000 |
| commit | 0cb37ac3df7f9020accbc24f241075b3703e2a0f (patch) | |
| tree | 4789a4af41bf722d89dc05f84fa55fca304a2eee /cpp | |
| parent | 6e3b574db90eb018787c07f4afbf2205193df87a (diff) | |
| download | qpid-python-0cb37ac3df7f9020accbc24f241075b3703e2a0f.tar.gz | |
NO-JIRA: Fix bug in Cluster::timerDrop - calling wrong function.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1089953 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index a8a99d83b5..d5486c1d7e 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -235,7 +235,7 @@ struct ClusterDispatcher : public framing::AMQP_AllOperations::ClusterHandler { cluster.errorCheck(member, type, frameSeq, l); } void timerWakeup(const std::string& name) { cluster.timerWakeup(member, name, l); } - void timerDrop(const std::string& name) { cluster.timerWakeup(member, name, l); } + void timerDrop(const std::string& name) { cluster.timerDrop(member, name, l); } void shutdown(const Uuid& id) { cluster.shutdown(member, id, l); } void deliverToQueue(const std::string& queue, const std::string& message) { cluster.deliverToQueue(queue, message, l); |
