From 2a5a96b88f8f76a7904adf157d1babe1f881d0ef Mon Sep 17 00:00:00 2001 From: Tomer Haskalovitch Date: Sun, 4 Jan 2026 10:33:53 +0200 Subject: [PATCH] mgr/dashboard: fix typo in error when gw does not exist Signed-off-by: Tomer Haskalovitch --- src/pybind/mgr/dashboard/services/nvmeof_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/services/nvmeof_client.py b/src/pybind/mgr/dashboard/services/nvmeof_client.py index 8916cfbf10e4..8ac76f2a8e34 100644 --- a/src/pybind/mgr/dashboard/services/nvmeof_client.py +++ b/src/pybind/mgr/dashboard/services/nvmeof_client.py @@ -41,7 +41,7 @@ else: else: res = NvmeofGatewaysConfig.get_service_info(gw_group) if res is None: - raise DashboardException("Gateway group does not exists") + raise DashboardException("Gateway group does not exist") service_name, self.gateway_addr = res except TypeError as e: raise DashboardException( -- 2.47.3