From 92578017571db0d7a739a1d239cb590c4410124b Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 29 Jan 2009 22:24:22 +0000 Subject: Fix cluster race condition for new members joining. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@739051 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/cluster/Cluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src') diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index cccb1fa098..09135a3b52 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -209,7 +209,7 @@ void Cluster::deliveredEvent(const Event& e) { Buffer buf(const_cast(e.getData()), e.getSize()); boost::intrusive_ptr connection; if (e.isConnection()) { - if (state == JOINER) { + if (state <= JOINER) { QPID_LOG(trace, *this << " DROP: " << e); return; } -- cgit v1.2.1