File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/org/jenkinsci/plugins/workflow/log Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ final class DelayBufferedOutputStream extends BufferedOutputStream {
4747 static final class Tuning implements SerializableOnlyOverRemoting {
4848 private Tuning () {}
4949 // nonfinal for Groovy scripting:
50- long minRecurrencePeriod = Long .getLong (DelayBufferedOutputStream .class .getName () + ".minRecurrencePeriod" , 250 ); // ¼s
50+ long minRecurrencePeriod = Long .getLong (DelayBufferedOutputStream .class .getName () + ".minRecurrencePeriod" , 1_000 ); // 1s
5151 long maxRecurrencePeriod = Long .getLong (DelayBufferedOutputStream .class .getName () + ".maxRecurrencePeriod" , 10_000 ); // 10s
5252 float recurrencePeriodBackoff = Float .parseFloat (System .getProperty (DelayBufferedOutputStream .class .getName () + ".recurrencePeriodBackoff" , "1.05" ));
5353 int bufferSize = Integer .getInteger (DelayBufferedOutputStream .class .getName () + ".bufferSize" , 1 << 16 ); // 64Kib
You can’t perform that action at this time.
0 commit comments