From 20482c7f0b29a43a6731457269dc63971cd6a810 Mon Sep 17 00:00:00 2001 From: maas-lander <115650013+maas-lander@users.noreply.github.com> Date: Mon, 16 Dec 2024 00:16:07 +0000 Subject: [PATCH] chore: update charm libraries --- maas-region/lib/charms/operator_libs_linux/v2/snap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maas-region/lib/charms/operator_libs_linux/v2/snap.py b/maas-region/lib/charms/operator_libs_linux/v2/snap.py index d84b7d8..d14f864 100644 --- a/maas-region/lib/charms/operator_libs_linux/v2/snap.py +++ b/maas-region/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":