Skip to content

Commit ab5ce48

Browse files
committed
[integ-tests] increase retries on url validation
Signed-off-by: Luca Carrogu <carrogu@amazon.com>
1 parent 84aeb60 commit ab5ce48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration-tests/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def _is_file(value):
360360
return value
361361

362362

363-
@retry(stop_max_attempt_number=6, wait_fixed=5000)
363+
@retry(stop_max_attempt_number=10, wait_fixed=5000)
364364
def _is_url(value):
365365
scheme = urllib.request.urlparse(value).scheme
366366
if scheme in ["https", "s3", "file"]:

0 commit comments

Comments
 (0)