Skip to content

Commit

Permalink
Increase retry count in writeLogTo
Browse files Browse the repository at this point in the history
  • Loading branch information
romanisb committed May 8, 2023
1 parent a0b70c0 commit 58aefbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private CauseAction createCauseAction(String cause) {
}

private void writeLogTo(PrintStream out) throws IOException, InterruptedException {
final int retryCnt = 10;
final int retryCnt = 200;

// read output in a retry loop, by default try only once
// writeWholeLogTo may fail with FileNotFound
Expand Down

0 comments on commit 58aefbf

Please sign in to comment.