From 3b41ec0daa83659eeeb34f7e92bf26c5a2569626 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Mon, 30 Oct 2023 20:54:50 +0530 Subject: [PATCH] mgr/dashboard: disable dashboard v3 in quincy Fixes: https://tracker.ceph.com/issues/63357 Signed-off-by: Nizamudeen A --- src/pybind/mgr/dashboard/plugins/feature_toggles.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/plugins/feature_toggles.py b/src/pybind/mgr/dashboard/plugins/feature_toggles.py index f16b2e68c4d69..e57f929696a21 100644 --- a/src/pybind/mgr/dashboard/plugins/feature_toggles.py +++ b/src/pybind/mgr/dashboard/plugins/feature_toggles.py @@ -28,7 +28,8 @@ class Features(Enum): DASHBOARD = 'dashboard' -PREDISABLED_FEATURES = set() # type: Set[str] +PREDISABLED_FEATURES = set( + [Features.DASHBOARD, Features.DASHBOARD.value]) # type: Set[Features | str] Feature2Controller = { Features.RBD: [Rbd, RbdSnapshot, RbdTrash], -- 2.39.5