From 187d3849c1d4ebcc7066603fcaf64f54f9fcee6a Mon Sep 17 00:00:00 2001 From: Hemanth Nakkina Date: Tue, 10 Oct 2023 14:53:03 +0530 Subject: [PATCH] Fix descriptions in gnocchi_service library Fix description for service_ready in gnocchi_service interface library Change-Id: Id132ef8e70ac20a7970397ab01ce5e762b8f9e6c --- .../gnocchi-k8s/lib/charms/gnocchi_k8s/v0/gnocchi_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charms/gnocchi-k8s/lib/charms/gnocchi_k8s/v0/gnocchi_service.py b/charms/gnocchi-k8s/lib/charms/gnocchi_k8s/v0/gnocchi_service.py index f830ec2c..fbc679d5 100644 --- a/charms/gnocchi-k8s/lib/charms/gnocchi_k8s/v0/gnocchi_service.py +++ b/charms/gnocchi-k8s/lib/charms/gnocchi_k8s/v0/gnocchi_service.py @@ -86,7 +86,7 @@ LIBAPI = 0 # Increment this PATCH version before using `charmcraft publish-lib` or reset # to 0 if you are raising the major API version -LIBPATCH = 1 +LIBPATCH = 2 class GnocchiServiceReadinessRequestEvent(RelationEvent): @@ -197,7 +197,7 @@ class GnocchiServiceRequires(Object): @property def service_ready(self) -> bool: - """Return the auth_encryption_key.""" + """Return if gnocchi service is ready or not.""" is_ready = self.get_remote_app_data("ready") if is_ready: return json.loads(is_ready)