diff --git a/charms/worker/k8s/lib/charms/operator_libs_linux/v2/snap.py b/charms/worker/k8s/lib/charms/operator_libs_linux/v2/snap.py index d84b7d8d..d14f864f 100644 --- a/charms/worker/k8s/lib/charms/operator_libs_linux/v2/snap.py +++ b/charms/worker/k8s/lib/charms/operator_libs_linux/v2/snap.py @@ -84,7 +84,7 @@ # Increment this PATCH version before using `charmcraft publish-lib` or reset # to 0 if you are raising the major API version -LIBPATCH = 8 +LIBPATCH = 9 # Regex to locate 7-bit C1 ANSI sequences @@ -787,7 +787,7 @@ def _wait(self, change_id: str, timeout=300) -> JSONType: status = response["status"] if status == "Done": return response.get("data") - if status == "Doing": + if status == "Doing" or status == "Do": time.sleep(0.1) continue if status == "Wait":