From ac2430a43ddec469575a25be4aff75ce1628eee2 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 18 Dec 2018 21:18:57 -0600 Subject: [PATCH] qa/tasks/ceph_manager: make get_mon_status use mon addr We don't have the 'mon addr' config property any more. 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 37aff1b262a35..c9cbc44505ce6 100644 --- a/qa/tasks/ceph_manager.py +++ b/qa/tasks/ceph_manager.py @@ -2520,7 +2520,7 @@ class CephManager: """ Extract all the monitor status information from the cluster """ - addr = self.ctx.ceph[self.cluster].conf['mon.%s' % mon]['mon addr'] + addr = self.ctx.ceph[self.cluster].mons['mon.%s' % mon] out = self.raw_cluster_cmd('-m', addr, 'mon_status') return json.loads(out) -- 2.39.5