Skip to content

Commit

Permalink
Merge pull request #253 from Aiven-Open/aris-increase-system-test-bac…
Browse files Browse the repository at this point in the history
…koff-multiplier

Increase system test backoff multiplier
  • Loading branch information
joelynch authored Nov 5, 2024
2 parents 44520ef + 80474ab commit 411586c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def create_astacus_config(

async def wait_url_up(url: str | URL) -> None:
async with httpx.AsyncClient() as client:
async for _ in exponential_backoff(initial=0.1, multiplier=1.3, retries=20):
async for _ in exponential_backoff(initial=0.1, multiplier=1.4, retries=20):
try:
r = await client.get(url)
if not r.is_error:
Expand Down

0 comments on commit 411586c

Please sign in to comment.