From c39b19f43c2b54e626ef08ed7a8d9acc23aa301e Mon Sep 17 00:00:00 2001 From: Volker Theile Date: Fri, 8 Feb 2019 14:00:27 +0100 Subject: [PATCH] mgr/dashboard: Fix typo in NoOrchesrtatorConfiguredException class name Signed-off-by: Volker Theile --- src/pybind/mgr/dashboard/services/orchestrator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard/services/orchestrator.py b/src/pybind/mgr/dashboard/services/orchestrator.py index d5774f5ff02a..4a19afef9d48 100644 --- a/src/pybind/mgr/dashboard/services/orchestrator.py +++ b/src/pybind/mgr/dashboard/services/orchestrator.py @@ -6,7 +6,7 @@ import time from .. import mgr, logger -class NoOrchesrtatorConfiguredException(Exception): +class NoOrchestratorConfiguredException(Exception): pass @@ -22,7 +22,7 @@ class OrchClient(object): def _call(self, method, *args, **kwargs): _backend = mgr.get_module_option_ex("orchestrator_cli", "orchestrator") if not _backend: - raise NoOrchesrtatorConfiguredException() + raise NoOrchestratorConfiguredException() return mgr.remote(_backend, method, *args, **kwargs) def _wait(self, completions): -- 2.47.3