From 9719920920cb3d1f24a4eea0687f267ffe3ecdab Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 5 Aug 2019 09:41:18 -0500 Subject: [PATCH] qa/tasks/ceph_manager: no newlines in 'ceph -s' output This gets dumped to the log, making it hard to read. Signed-off-by: Sage Weil --- 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 4d9ac33a902..1f52f876fae 100644 --- a/qa/tasks/ceph_manager.py +++ b/qa/tasks/ceph_manager.py @@ -1612,7 +1612,7 @@ class CephManager: """ Get status from cluster """ - status = self.raw_cluster_cmd('status', '--format=json-pretty') + status = self.raw_cluster_cmd('status', '--format=json') return json.loads(status) def raw_osd_status(self): -- 2.39.5