From 444da26e794615cfa9db8e2522b954ec80e82a4d Mon Sep 17 00:00:00 2001 From: Ernesto Puerta Date: Thu, 20 Jan 2022 13:11:58 +0100 Subject: [PATCH] mgr/dashboard: remove feedback as always-on It was mistakenly left as always-on Fixes: https://tracker.ceph.com/issues/53950 Signed-off-by: Ernesto Puerta --- src/mon/MgrMonitor.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mon/MgrMonitor.cc b/src/mon/MgrMonitor.cc index 2b1b5cba3c196..86fa755bc5ae6 100644 --- a/src/mon/MgrMonitor.cc +++ b/src/mon/MgrMonitor.cc @@ -106,7 +106,6 @@ const static std::map> always_on_modules = { "progress", "balancer", "devicehealth", - "feedback", "orchestrator", "rbd_support", "volumes", @@ -462,7 +461,7 @@ public: mm(a), op(c) {} void finish(int r) override { if (r >= 0) { - // Success + // Success } else if (r == -ECANCELED) { mm->mon.no_reply(op); } else { -- 2.39.5