From 0080efb05e988d9bcf51b90a5a6c99cdc6e4f7d0 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 9 Jan 2019 02:59:15 +0800 Subject: [PATCH] mgr/test_orchestrator: correct ceph-volume path s/ceph_volume/ceph-volume/ Fixes: http://tracker.ceph.com/issues/37773 Signed-off-by: Kefu Chai --- src/pybind/mgr/test_orchestrator/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/test_orchestrator/module.py b/src/pybind/mgr/test_orchestrator/module.py index 324aeb07612..41162b6db90 100644 --- a/src/pybind/mgr/test_orchestrator/module.py +++ b/src/pybind/mgr/test_orchestrator/module.py @@ -193,7 +193,7 @@ class TestOrchestrator(MgrModule, orchestrator.Orchestrator): There is no guarantee which devices are returned by get_inventory. """ try: - c_v_out = check_output(['ceph_volume', 'inventory', '--format', 'json']) + c_v_out = check_output(['ceph-volume', 'inventory', '--format', 'json']) except OSError: cmd = """ . /tmp/ceph-volume-virtualenv/bin/activate -- 2.39.5