From 301397397556b3dc79f8d2b6aa1a88380b70fb08 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 13 Jun 2021 20:32:41 -0400 Subject: [PATCH] Fix bad schema names --- daemon-common/ceph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon-common/ceph.py b/daemon-common/ceph.py index 22bc437f..87235754 100644 --- a/daemon-common/ceph.py +++ b/daemon-common/ceph.py @@ -144,7 +144,7 @@ def format_pct_tohuman(datapct): # Status functions # def get_status(zkhandler): - primary_node = zkhandler.read('base.primary_node') + primary_node = zkhandler.read('base.config.primary_node') ceph_status = zkhandler.read('base.storage').rstrip() # Create a data structure for the information @@ -157,7 +157,7 @@ def get_status(zkhandler): def get_util(zkhandler): - primary_node = zkhandler.read('base.primary_node') + primary_node = zkhandler.read('base.config.primary_node') ceph_df = zkhandler.read('base.storage.util').rstrip() # Create a data structure for the information