From: Sage Weil Date: Mon, 5 Aug 2019 14:41:18 +0000 (-0500) Subject: qa/tasks/ceph_manager: no newlines in 'ceph -s' output X-Git-Tag: v15.1.0~1928^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=9719920920cb3d1f24a4eea0687f267ffe3ecdab;p=ceph-ci.git 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 --- 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):