We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e706f commit 14c06ffCopy full SHA for 14c06ff
tests/integration/high_availability/test_async_replication.py
@@ -336,11 +336,18 @@ async def test_remove_relation_and_relate(
336
timeout=10 * MINUTE,
337
)
338
339
- logger.info("Waiting for the primary to settle")
340
- await first_model.wait_for_idle(
341
- apps=[MYSQL_APP1],
342
- status="active",
343
- timeout=10 * MINUTE,
+ logger.info("Waiting for the applications to settle")
+ await gather(
+ first_model.wait_for_idle(
+ apps=[MYSQL_APP1],
+ status="active",
344
+ timeout=10 * MINUTE,
345
+ ),
346
+ second_model.wait_for_idle(
347
+ apps=[MYSQL_APP2],
348
+ status="blocked",
349
350
351
352
353
logger.info("Re relating the two mysql clusters")
0 commit comments