summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/asyncStore/Plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/asyncStore/Plugin.cpp')
-rw-r--r--cpp/src/qpid/asyncStore/Plugin.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/cpp/src/qpid/asyncStore/Plugin.cpp b/cpp/src/qpid/asyncStore/Plugin.cpp
index 7395fc9b87..666db2120f 100644
--- a/cpp/src/qpid/asyncStore/Plugin.cpp
+++ b/cpp/src/qpid/asyncStore/Plugin.cpp
@@ -54,13 +54,8 @@ Plugin::initialize(Target& target) {
Broker* broker = dynamic_cast<Broker*>(&target);
if (!broker || !m_store) return;
- // Not done in earlyInitialize as the Broker::isInCluster test won't work there.
- if (broker->isInCluster()) {
- QPID_LOG(info, "asyncStore: Part of cluster: Disabling management instrumentation");
- } else {
- QPID_LOG(info, "asyncStore: Enabling management instrumentation");
- m_store->initManagement(broker);
- }
+ QPID_LOG(info, "asyncStore: Enabling management instrumentation");
+ m_store->initManagement(broker);
}
void