diff options
| author | Alan Conway <aconway@apache.org> | 2012-02-29 23:38:00 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-02-29 23:38:00 +0000 |
| commit | 9da195e712d38ef250b698fc394fef8ab6a936a5 (patch) | |
| tree | a3801773e75304bdfb8d554b044f4d4e1aa09324 /cpp/src/qpid/broker/Link.cpp | |
| parent | 316f2a9a92780a323b7b2fcbcb695883651b370f (diff) | |
| download | qpid-python-9da195e712d38ef250b698fc394fef8ab6a936a5.tar.gz | |
QPID-3603: HA support for stand-alone replication.
- New management method HaBroker.replicate to enable replication.
- qpid-ha tool can enable replication of queues.
- qpid-config tool can create queues with replication enabled.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1295339 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Link.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Link.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cpp/src/qpid/broker/Link.cpp b/cpp/src/qpid/broker/Link.cpp index 4af1e6d6bd..56a90e7fb7 100644 --- a/cpp/src/qpid/broker/Link.cpp +++ b/cpp/src/qpid/broker/Link.cpp @@ -206,11 +206,9 @@ void Link::closed(int, std::string text) QPID_LOG (info, "Inter-broker link disconnected from " << host << ":" << port << " " << text); connection = 0; - if (state == STATE_OPERATIONAL) { stringstream addr; addr << host << ":" << port; - QPID_LOG(warning, "Inter-broker link disconnected from " << addr.str()); if (!hideManagement() && agent) agent->raiseEvent(_qmf::EventBrokerLinkDown(addr.str())); } @@ -405,7 +403,6 @@ uint Link::nextChannel() void Link::notifyConnectionForced(const string text) { Mutex::ScopedLock mutex(lock); - setStateLH(STATE_FAILED); if (!hideManagement()) mgmtObject->set_lastError(text); |
