diff options
author | Alan Conway <aconway@apache.org> | 2010-03-31 16:52:50 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-03-31 16:52:50 +0000 |
commit | dda98127df553def41fb332f714c2f91858a7ea3 (patch) | |
tree | 85ce770251b694656176e4e29e055194293f430d /cpp/src/qpid/cluster/Connection.cpp | |
parent | f6f1900eb98cc1773a88a3ec309afa646438a384 (diff) | |
download | qpid-python-dda98127df553def41fb332f714c2f91858a7ea3.tar.gz |
Cluster: remove un-necessary code for config-seq.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929616 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index 1166f685d2..30828d7bd9 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -381,11 +381,10 @@ void Connection::shadowReady( } void Connection::membership(const FieldTable& joiners, const FieldTable& members, - const framing::SequenceNumber& frameSeq, - const framing::SequenceNumber& configSeq) + const framing::SequenceNumber& frameSeq) { QPID_LOG(debug, cluster << " incoming update complete on connection " << *this); - cluster.updateInDone(ClusterMap(joiners, members, frameSeq, configSeq)); + cluster.updateInDone(ClusterMap(joiners, members, frameSeq)); updateIn.consumerNumbering.clear(); self.second = 0; // Mark this as completed update connection. } |