Skip to content

Commit 339a519

Browse files
committed
Increase timeout for rename retries.
Per #1912 McAfee users are still seeing contention on directory renames. Give McAfee more settle time.
1 parent 0602a72 commit 339a519

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)