diff options
author | Alan Conway <aconway@apache.org> | 2010-02-26 16:47:23 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-02-26 16:47:23 +0000 |
commit | 381ff27cacc1f72a42504e8e698d33b59d145b30 (patch) | |
tree | edacbecabda74ac97d788e76d0071dfb5458618e /cpp/src/qpid/cluster/Cpg.cpp | |
parent | eecd6b99d4db4b83ba3edd2cbad4bfa08a4bfec8 (diff) | |
download | qpid-python-381ff27cacc1f72a42504e8e698d33b59d145b30.tar.gz |
Fix cluster abort on shutdown in ClusterTimer::fire.
The cluster destructor was not deleting the ClusterTimer set on the
broker, so this timer had a dangling pointer to the cluster.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@916751 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Cpg.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Cpg.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Cpg.cpp b/cpp/src/qpid/cluster/Cpg.cpp index 3ae0c970c7..0856bcd824 100644 --- a/cpp/src/qpid/cluster/Cpg.cpp +++ b/cpp/src/qpid/cluster/Cpg.cpp @@ -54,7 +54,6 @@ void Cpg::callCpg ( CpgOp & c ) { unsigned int snooze = 10; for ( unsigned int nth_try = 0; nth_try < cpgRetries; ++ nth_try ) { if ( CPG_OK == (result = c.op(handle, & group))) { - QPID_LOG(info, c.opName << " successful."); break; } else if ( result == CPG_ERR_TRY_AGAIN ) { |