From faf1a3baa4f5a1821bae8bd94b3d05cef561e1de Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Wed, 25 Mar 2026 14:16:46 +0530 Subject: [PATCH] mgr/dashboard: Allow creating nvmeof gateway group via new flow Fixes https://tracker.ceph.com/issues/75699 Signed-off-by: Afreen Misbah --- src/pybind/mgr/dashboard/controllers/nvmeof.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pybind/mgr/dashboard/controllers/nvmeof.py b/src/pybind/mgr/dashboard/controllers/nvmeof.py index 7c841335f8bc..c288d831ec97 100644 --- a/src/pybind/mgr/dashboard/controllers/nvmeof.py +++ b/src/pybind/mgr/dashboard/controllers/nvmeof.py @@ -1779,10 +1779,8 @@ else: orch = OrchClient.instance() orch_status = orch.status() if not orch_status['available']: - return status - if not orch.services.list_daemons(daemon_type='nvmeof'): status["available"] = False - status["message"] = 'An NVMe/TCP service must be created.' + status["message"] = 'Orchestrator is not available' return status # UI API for adding one or more than one hosts to subsystem -- 2.47.3