From 7231aab4b844729c1c35da37515dce58026c26a2 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Tue, 16 Jul 2019 13:54:16 -0400 Subject: [PATCH] mon/mgr: add 'rbd_support' to list of always-on mgr modules The 'rbd_support' mgr module provides many background functions that are required by the 'rbd' CLI performance queries, as well as future background long-running maintenance tasks. Fixes: http://tracker.ceph.com/issues/40790 Signed-off-by: Jason Dillaman --- src/mon/MgrMonitor.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mon/MgrMonitor.cc b/src/mon/MgrMonitor.cc index ff3539f72c5..b6ff4a0d917 100644 --- a/src/mon/MgrMonitor.cc +++ b/src/mon/MgrMonitor.cc @@ -48,6 +48,7 @@ const static std::map> always_on_modules = { "balancer", "devicehealth", "orchestrator_cli", + "rbd_support", "volumes", } }, @@ -59,6 +60,7 @@ const static std::map> always_on_modules = { "balancer", "devicehealth", "orchestrator_cli", + "rbd_support", "volumes", } }