Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def run_upgrade_from_edge(juju: Juju, app_name: str, charm: str) -> None:
wait=5 * MINUTE_SECS,
)

juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)
juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)

logging.info("Run resume-refresh action")
juju.run(unit=unit_names[1], action="resume-refresh", wait=5 * MINUTE_SECS)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/high_availability/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_upgrade_from_edge(juju: Juju, charm: str, continuous_writes) -> None:
wait=5 * MINUTE_SECS,
)

juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)
juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)

logging.info("Run resume-refresh action")
juju.run(unit=unit_names[1], action="resume-refresh", wait=5 * MINUTE_SECS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_upgrade_from_stable(juju: Juju, charm: str, continuous_writes) -> None:
wait=5 * MINUTE_SECS,
)

juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)
juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)

logging.info("Run resume-refresh action")
juju.run(unit=unit_names[1], action="resume-refresh", wait=5 * MINUTE_SECS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_refresh_without_pre_refresh_check(juju: Juju, charm: str, continuous_wr
wait=5 * MINUTE_SECS,
)

juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)
juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)

logging.info("Run resume-refresh action")
juju.run(unit=unit_names[1], action="resume-refresh", wait=5 * MINUTE_SECS)
Expand Down Expand Up @@ -123,7 +123,7 @@ async def test_rollback_without_pre_refresh_check(
wait=5 * MINUTE_SECS,
)

juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)
juju.wait(jubilant.all_agents_idle, timeout=5 * MINUTE_SECS)

logging.info("Run resume-refresh action")
juju.run(unit=unit_names[1], action="resume-refresh", wait=5 * MINUTE_SECS)
Expand Down