Skip to content

Commit

Permalink
fix: Update maximum delay for timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
timwiggin committed Aug 16, 2023
1 parent ff101cd commit 10f7c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vpt_core/io/vzgfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def filesystem_path_split(uri: str) -> Tuple[AbstractFileSystem, str]:

def retrying_attempts():
return tenacity.Retrying(
stop=(stop_after_delay(15) | stop_after_attempt(5)),
stop=(stop_after_delay(60) | stop_after_attempt(5)),
retry=retry_if_exception_type(FSTimeoutError),
wait=wait_fixed(10),
)
Expand Down

0 comments on commit 10f7c19

Please sign in to comment.