Skip to content

Commit c3335c4

Browse files
Extend timeout
1 parent 413dc04 commit c3335c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/hudson/FilePath.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,10 +722,10 @@ private static void unzip(File dir, File zipFile) throws IOException {
722722
target.chmod(mode);
723723
break;
724724
} catch (NoSuchFileException ex) { // https://issues.jenkins.io/browse/JENKINS-76192
725-
if (attempt == 3) {
725+
if (attempt == 5) {
726726
throw ex;
727727
}
728-
Thread.sleep(420);
728+
Thread.sleep(1000);
729729
}
730730
}
731731
}

0 commit comments

Comments
 (0)