Skip to content

Commit af0f918

Browse files
authored
Merge pull request #2348 from rbtcollins/1912
Increase timeout for rename retries.
2 parents 0602a72 + 339a519 commit af0f918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ where
587587
// for our previous poor performance that avoided the race condition with
588588
// McAfee and Norton.
589589
retry(
590-
Fibonacci::from_millis(1).map(jitter).take(21),
590+
Fibonacci::from_millis(1).map(jitter).take(26),
591591
|| match fs::rename(src, dest) {
592592
Ok(()) => OperationResult::Ok(()),
593593
Err(e) => match e.kind() {

0 commit comments

Comments
 (0)