From: Sebastian Wagner Date: Thu, 26 Mar 2020 16:50:21 +0000 (+0100) Subject: mgr/cephadm: Add missing decorator X-Git-Tag: v16.1.0~2773^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F34218%2Fhead;p=ceph.git mgr/cephadm: Add missing decorator Caused by a conflict between * #33581 (770816dc9f5b440fd1fc6cc507a06cd8573f6ea1) and * #34091 (a78f42e225bbc041324dc3e565deb207feddad26) Signed-off-by: Sebastian Wagner --- diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index a78462bd2719..7e89a365500f 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -2781,6 +2781,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): return cephadm_config, deps + @trivial_completion def add_nfs(self, spec): return self._add_daemon('nfs', spec, self._create_nfs, self._config_nfs)