Skip to content

Commit

Permalink
Increase number of retries on websocket in YAML test harness. (#31893)
Browse files Browse the repository at this point in the history
We seem to be hitting the 4-retry cap a lot.  The question is whether waiting an
extra few seconds would help or not.

Co-authored-by: Andrei Litvin <[email protected]>
  • Loading branch information
2 people authored and pull[bot] committed Mar 12, 2024
1 parent 4b72ec5 commit 4355336
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def execute(self, request):
return await instance.recv()
return None

async def _start_client(self, url, max_retries=4, interval_between_retries=1):
async def _start_client(self, url, max_retries=5, interval_between_retries=1):
if max_retries:
start = time.time()
try:
Expand Down

0 comments on commit 4355336

Please sign in to comment.