From f6f6916d3a631240f08f9d9fedf5c3b5f71883aa Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 10 Feb 2009 21:42:10 +0000 Subject: Fix cluster flow control bug: hang with large messages (>frame-max) and low --cluster-read-max. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@743114 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/cluster/Cluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/cluster/Cluster.cpp') diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index be04eebc57..d9a5125760 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -103,7 +103,7 @@ Cluster::Cluster(const std::string& name_, const Url& url_, broker::Broker& b, b "Error delivering frames", poller), connections(*this), - decoder(boost::bind(&PollableFrameQueue::push, &deliverFrameQueue, _1)), + decoder(boost::bind(&PollableFrameQueue::push, &deliverFrameQueue, _1), connections), expiryPolicy(new ExpiryPolicy(boost::bind(&Cluster::isLeader, this), mcast, myId, broker.getTimer())), frameId(0), initialized(false), -- cgit v1.2.1