Skip to content

Commit

Permalink
Pipe shall wait for 10 sec by default for the "defective" fs
Browse files Browse the repository at this point in the history
  • Loading branch information
sidoruka committed Nov 2, 2023
1 parent 18e8659 commit a26d728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipe-cli/src/model/data_storage_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def __init__(self, path, symlinks=None):
self.symlinks = symlinks
self.path_separator = os.sep
self.listing_retry_attempts = int(os.getenv('CP_CLI_TRANSFER_LISTING_FAILURES_RETRY_ATTEMPTS', '3'))
self.listing_retry_delay = int(os.getenv('CP_CLI_TRANSFER_LISTING_FAILURES_RETRY_DELAY', '5'))
self.listing_retry_delay = int(os.getenv('CP_CLI_TRANSFER_LISTING_FAILURES_RETRY_DELAY', '10'))

def exists(self):
return os.path.exists(self.path)
Expand Down

0 comments on commit a26d728

Please sign in to comment.