]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: Fix typo in NoOrchesrtatorConfiguredException class name 26334/head
authorVolker Theile <vtheile@suse.com>
Fri, 8 Feb 2019 13:00:27 +0000 (14:00 +0100)
committerVolker Theile <vtheile@suse.com>
Thu, 14 Feb 2019 09:54:44 +0000 (10:54 +0100)
Signed-off-by: Volker Theile <vtheile@suse.com>
src/pybind/mgr/dashboard/services/orchestrator.py

index d5774f5ff02a169720d1ecb9ef23fec6552eca43..4a19afef9d48e8ee704a76d215d003ea7c48f72b 100644 (file)
@@ -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):