From a26d728f0bb13d0428b531c355f2dcdc8426474f Mon Sep 17 00:00:00 2001 From: Aleksandr Sidoruk Date: Thu, 2 Nov 2023 20:48:57 +0300 Subject: [PATCH] Pipe shall wait for 10 sec by default for the "defective" fs --- pipe-cli/src/model/data_storage_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipe-cli/src/model/data_storage_wrapper.py b/pipe-cli/src/model/data_storage_wrapper.py index eda6262a19..fbdf7b7798 100644 --- a/pipe-cli/src/model/data_storage_wrapper.py +++ b/pipe-cli/src/model/data_storage_wrapper.py @@ -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)