Skip to content

Commit

Permalink
Increase number of retries on websocket in YAML test harness. (projec…
Browse files Browse the repository at this point in the history
…t-chip#31893)

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 raul-marquez-csa committed Feb 16, 2024
1 parent 31daa12 commit 2c5afe3
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 2c5afe3

Please sign in to comment.