From 58c9f3093ecc8c1797272d7a6720d7f8ef2d39aa Mon Sep 17 00:00:00 2001 From: Liam Young Date: Tue, 14 Apr 2020 09:03:05 +0000 Subject: [PATCH] Improve status message --- ops_openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops_openstack.py b/ops_openstack.py index e8f1ddf..c816556 100644 --- a/ops_openstack.py +++ b/ops_openstack.py @@ -103,7 +103,7 @@ class OSBaseCharm(CharmBase): if self.state.is_started: self.unit.status = ActiveStatus('Unit is ready') else: - self.unit.status = WaitingStatus('Not ready for reasons') + self.unit.status = WaitingStatus('Charm configuration in progress') logging.info("Status updated") def on_update_status(self, event):