Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/HH-205822' into EXP-86902
Browse files Browse the repository at this point in the history
  • Loading branch information
HH ReleaseBot committed Feb 2, 2024
2 parents 7878f11 + 5c1e2a1 commit 887e733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/projects/balancer_app/pages/slow_start_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ async def make_request(delay: float = 0) -> None:

request2 = self.run_task(make_request())
request3 = self.run_task(make_request())
request4 = self.run_task(make_request(0.9))
request4 = self.run_task(make_request(1.1))

await asyncio.gather(request2, request3)
await asyncio.wait_for(request4, timeout=1)
await request4

check_all_requests_done(self, 'slow_start_async')

Expand Down

0 comments on commit 887e733

Please sign in to comment.