diff options
author | Alan Conway <aconway@apache.org> | 2009-01-08 17:33:08 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-01-08 17:33:08 +0000 |
commit | 64bd79537e385a045b3c74de95ddd19f91163a26 (patch) | |
tree | 1f4ee85cfac2adca779be9042a5f8c71e67b08f9 /cpp/src/qpid/cluster/Cluster.cpp | |
parent | e6ab393e6dfef3bf90b2552a94e8e00dd3b6bfa4 (diff) | |
download | qpid-python-64bd79537e385a045b3c74de95ddd19f91163a26.tar.gz |
cluster: handle multicast errors.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@732768 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Cluster.cpp')
-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 dd9de68bf5..ef6285481c 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -98,7 +98,7 @@ Cluster::Cluster(const std::string& name_, const Url& url_, broker::Broker& b, b 0, // write boost::bind(&Cluster::disconnect, this, _1) // disconnect ), - mcast(cpg, poller), + mcast(cpg, poller, boost::bind(&Cluster::leave, this)), mgmtObject(0), deliverQueue(boost::bind(&Cluster::delivered, this, _1), poller), state(INIT), |