From: Nizamudeen A Date: Mon, 30 Oct 2023 15:24:50 +0000 (+0530) Subject: mgr/dashboard: disable dashboard v3 in quincy X-Git-Tag: v17.2.8~666^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3b41ec0daa83659eeeb34f7e92bf26c5a2569626;p=ceph.git mgr/dashboard: disable dashboard v3 in quincy Fixes: https://tracker.ceph.com/issues/63357 Signed-off-by: Nizamudeen A --- 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],