Skip to content

Commit 8b3aa4c

Browse files
Increase number of retries on websocket in YAML test harness.
We seem to be hitting the 4-retry cap a lot. The question is whether waiting an extra few seconds would help or not.
1 parent e4c4c38 commit 8b3aa4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/py_matter_yamltests/matter_yamltests/websocket_runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def execute(self, request):
7070
return await instance.recv()
7171
return None
7272

73-
async def _start_client(self, url, max_retries=4, interval_between_retries=1):
73+
async def _start_client(self, url, max_retries=5, interval_between_retries=1):
7474
if max_retries:
7575
start = time.time()
7676
try:

0 commit comments

Comments
 (0)