From ad56f81b7bc286bacb399c9afa6f019427aaa1b4 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@739051 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/cluster/Cluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp') diff --git a/qpid/cpp/src/qpid/cluster/Cluster.cpp b/qpid/cpp/src/qpid/cluster/Cluster.cpp index cccb1fa098..09135a3b52 100644 --- a/qpid/cpp/src/qpid/cluster/Cluster.cpp +++ b/qpid/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