From d49122795679fb95d592cb9e3d63431ce46c5968 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 15 Oct 2018 14:44:45 -0700 Subject: [PATCH] qa: fix run call args Fixes: http://tracker.ceph.com/issues/36450 Introduced-by: 95746ecce9215c8428a02f1745d03e10536a4129 Signed-off-by: Patrick Donnelly --- qa/tasks/ceph_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph_manager.py b/qa/tasks/ceph_manager.py index 52732083e1a89..287d189f66cc0 100644 --- a/qa/tasks/ceph_manager.py +++ b/qa/tasks/ceph_manager.py @@ -1198,7 +1198,7 @@ class CephManager: if watch_channel is not None: args.append("--watch-channel") args.append(watch_channel) - return self.controller.run(args, wait=False, stdout=StringIO(), stdin=run.PIPE) + return self.controller.run(args=args, wait=False, stdout=StringIO(), stdin=run.PIPE) def flush_pg_stats(self, osds, no_wait=None, wait_for_mon=300): """ -- 2.39.5