summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/ha/StatusCheck.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-10-12 18:38:53 +0000
committerAlan Conway <aconway@apache.org>2012-10-12 18:38:53 +0000
commit4886e2bcce72d99d34330c84ce33f6975f34b825 (patch)
tree8c043a8ce41d251974af43ffc03a35bf172aed4c /cpp/src/qpid/ha/StatusCheck.cpp
parent9fa42896bf3b21eb31534d193c0caa0802448e55 (diff)
downloadqpid-python-4886e2bcce72d99d34330c84ce33f6975f34b825.tar.gz
QPID-4369: HA backup brokers core dump in benchmark test.
Was seeing core dumps with QueueReplicator::queue == 0. Caused by race conditions when calling QueueReplicator::deactivate. Renamed deactivate to destroy and call it only when the broker::Queue is destroyed. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1397676 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/ha/StatusCheck.cpp')
-rw-r--r--cpp/src/qpid/ha/StatusCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/ha/StatusCheck.cpp b/cpp/src/qpid/ha/StatusCheck.cpp
index e4597a5a45..01fceb7783 100644
--- a/cpp/src/qpid/ha/StatusCheck.cpp
+++ b/cpp/src/qpid/ha/StatusCheck.cpp
@@ -93,7 +93,7 @@ void StatusCheckThread::run() {
QPID_LOG(debug, statusCheck.logPrefix << "Status of " << url << ": " << status);
}
} catch(const exception& error) {
- QPID_LOG(warning, "Error checking status of " << url << ": " << error.what());
+ QPID_LOG(info, "Checking status of " << url << ": " << error.what());
}
delete this;
}