diff options
| author | Alan Conway <aconway@apache.org> | 2008-12-11 22:50:02 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-12-11 22:50:02 +0000 |
| commit | e1d0293e7944c73995b52e2352d60ae8ba9ebc3d (patch) | |
| tree | 2b14f861d8b6c46776cb00e7d1925343b740c88b /cpp/src/qpid/cluster/OutputInterceptor.cpp | |
| parent | cc781622299a4de5af2fdde6bfc1e2eb42e1623a (diff) | |
| download | qpid-python-e1d0293e7944c73995b52e2352d60ae8ba9ebc3d.tar.gz | |
cluster: refactor multicast concerns into separate Multicaster class with separate locking.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@725853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/OutputInterceptor.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/OutputInterceptor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/OutputInterceptor.cpp b/cpp/src/qpid/cluster/OutputInterceptor.cpp index 0385ffc04e..ae2a040ef3 100644 --- a/cpp/src/qpid/cluster/OutputInterceptor.cpp +++ b/cpp/src/qpid/cluster/OutputInterceptor.cpp @@ -99,8 +99,8 @@ void OutputInterceptor::sendDoOutput() { // Send it anyway to keep the doOutput chain going until we are sure there's no more output // (in deliverDoOutput) // - // FIXME aconway 2008-10-16: use ++parent.mcastSeq as sequence no,not 0 - parent.getCluster().mcastControl(ClusterConnectionDeliverDoOutputBody(ProtocolVersion(), request), parent.getId(), 0); + parent.getCluster().getMulticast().mcastControl( + ClusterConnectionDeliverDoOutputBody(ProtocolVersion(), request), parent.getId()); QPID_LOG(trace, parent << "Send doOutput request for " << request); } |
