From: Tomer Haskalovitch Date: Thu, 19 Feb 2026 01:21:16 +0000 (+0200) Subject: fix is module enabled X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=285c4da1b39d138dda5d572b53a66b4e22e780ef;p=ceph-ci.git fix is module enabled --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index b0fcc87888a..74465e4ba79 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -2113,7 +2113,7 @@ Usage: mgr_map = self.get('mgr_map') return ( module in mgr_map.get('modules', []) - or module in mgr_map.get('always_on_modules', []) + or module in mgr_map.get('always_on_modules', []).get(self.release_name, []) ) def _create_nvmeof_metadata_pool_if_needed(self) -> None: