diff options
author | Alan Conway <aconway@apache.org> | 2009-02-02 22:18:04 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-02-02 22:18:04 +0000 |
commit | e5d4d995196e8a48cf7bc2180738b9bf5c3cb14f (patch) | |
tree | 5f68f071e9a178964f68698c131aba898cb407e7 /cpp/src | |
parent | 1ddb70d25be1efb37ba791da3b15fa66161c5cf8 (diff) | |
download | qpid-python-e5d4d995196e8a48cf7bc2180738b9bf5c3cb14f.tar.gz |
Fix bug in frame drop logic.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@740128 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-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 09135a3b52..6a19b8e4ea 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<char*>(e.getData()), e.getSize()); boost::intrusive_ptr<Connection> connection; if (e.isConnection()) { - if (state <= JOINER) { + if (state <= UPDATEE) { QPID_LOG(trace, *this << " DROP: " << e); return; } |