diff options
-rw-r--r-- | libbutl/filesystem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/filesystem.cxx b/libbutl/filesystem.cxx index 19d09d1..7db26a5 100644 --- a/libbutl/filesystem.cxx +++ b/libbutl/filesystem.cxx @@ -1087,7 +1087,7 @@ namespace butl // failure (see mventry() for details). If that's the case, we will keep // trying to move the file for two seconds. // - for (size_t i (0); i < 601; ++i) + for (size_t i (0); i < 21; ++i) { // Sleep 100 milliseconds before the removal retry. // @@ -1732,7 +1732,7 @@ namespace butl // fdopen(). // DWORD ec; - for (size_t i (0); i < 601; ++i) + for (size_t i (0); i < 21; ++i) { // Sleep 100 milliseconds before the move retry. // |