Skip to content

Commit

Permalink
Increase number of retries on websocket in YAML test harness.
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.
  • Loading branch information
bzbarsky-apple committed Feb 3, 2024
1 parent e4c4c38 commit 8b3aa4c
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 8b3aa4c

Please sign in to comment.