From 62056301233eff3fd93476bd841b94d7ffcb53fb Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 18 Dec 2019 08:46:42 -0600 Subject: [PATCH] mgr/cephadm: include host name in check-host result Signed-off-by: Sage Weil --- src/pybind/mgr/cephadm/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index a9bd66fc52b..810d24fc4de 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -568,7 +568,7 @@ class CephadmOrchestrator(MgrModule, orchestrator.Orchestrator): error_ok=True, no_fsid=True) if code: return 1, '', err - return 0, 'host ok', err + return 0, '%s ok' % host, err def _get_connection(self, host): """ -- 2.39.5