Author: aconway
Date: Thu Apr  7 19:37:10 2011
New Revision: 1089953

URL: http://svn.apache.org/viewvc?rev=1089953&view=rev
Log:
NO-JIRA: Fix bug in Cluster::timerDrop - calling wrong function.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp
URL: 
http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp?rev=1089953&r1=1089952&r2=1089953&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp Thu Apr  7 19:37:10 2011
@@ -235,7 +235,7 @@ struct ClusterDispatcher : public framin
         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);



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscr...@qpid.apache.org

Reply via email to