Skip to content

Commit

Permalink
chore: update charm libraries (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
maas-lander authored Dec 16, 2024
1 parent 4e0fa0f commit 7d92c92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maas-agent/lib/charms/operator_libs_linux/v2/snap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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":
Expand Down

0 comments on commit 7d92c92

Please sign in to comment.