From e6536c1ea8477e210338c2da1958e7efa83304fb Mon Sep 17 00:00:00 2001 From: "Charles E. Rolke" Date: Thu, 20 Dec 2012 15:20:35 +0000 Subject: QPID-4514: Remove obsolete cluster code: still more in plugin git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1424520 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/legacystore/StorePlugin.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'qpid/cpp') diff --git a/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp b/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp index b1e3aa4240..6003c6a2f3 100644 --- a/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp +++ b/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp @@ -64,13 +64,8 @@ struct StorePlugin : public Plugin { Broker* broker = dynamic_cast(&target); if (!broker) return; if (!store) return; - // Not done in earlyInitialize as the Broker::isInCluster test won't work there. - if (broker->isInCluster()) { - QPID_LOG(info, "Disabling management instrumentation for the store in a cluster."); - } else { - QPID_LOG(info, "Enabling management instrumentation for the store."); - store->initManagement(broker); - } + QPID_LOG(info, "Enabling management instrumentation for the store."); + store->initManagement(broker); } void finalize() -- cgit v1.2.1