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 | 6f817e7c800c5d814b9cffd3399ad5db4dcb44da (patch) | |
| tree | b64a07674d000f4dd5d0546fac60cbd2fd98e542 /qpid/cpp/src | |
| parent | e49c7055215e87b0b194480f9618ab22d0bd508a (diff) | |
| download | qpid-python-6f817e7c800c5d814b9cffd3399ad5db4dcb44da.tar.gz | |
Fix bug in frame drop logic.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@740128 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/cluster/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/Cluster.cpp b/qpid/cpp/src/qpid/cluster/Cluster.cpp index 09135a3b52..6a19b8e4ea 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<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; } |
