From: Volker Theile Date: Fri, 8 Feb 2019 13:00:27 +0000 (+0100) Subject: mgr/dashboard: Fix typo in NoOrchesrtatorConfiguredException class name X-Git-Tag: v14.1.0~103^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c39b19f43c2b54e626ef08ed7a8d9acc23aa301e;p=ceph-ci.git mgr/dashboard: Fix typo in NoOrchesrtatorConfiguredException class name Signed-off-by: Volker Theile --- diff --git a/src/pybind/mgr/dashboard/services/orchestrator.py b/src/pybind/mgr/dashboard/services/orchestrator.py index d5774f5ff02..4a19afef9d4 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):