Skip to content

Commit

Permalink
[integ-tests] increase retries on url validation
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Carrogu <[email protected]>
  • Loading branch information
lukeseawalker committed Jan 14, 2022
1 parent 84aeb60 commit ab5ce48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration-tests/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def _is_file(value):
return value


@retry(stop_max_attempt_number=6, wait_fixed=5000)
@retry(stop_max_attempt_number=10, wait_fixed=5000)
def _is_url(value):
scheme = urllib.request.urlparse(value).scheme
if scheme in ["https", "s3", "file"]:
Expand Down

0 comments on commit ab5ce48

Please sign in to comment.