diff --git a/src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecutionList.java b/src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecutionList.java index a36e8e61..13d4194b 100644 --- a/src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecutionList.java +++ b/src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecutionList.java @@ -361,7 +361,7 @@ synchronized void run() { StepExecution exec = entry.getValue(); processing.add(n); // Strictly speaking threadPoolForRemoting should be used for agent communications. - // In practice the onResume impl known to block is in ExecutorStepExecution. + // In practice the only onResume impl known to block is in ExecutorStepExecution. // Avoid jenkins.util.Timer since it is capped at 10 threads and should not be used for long tasks. Computer.threadPoolForRemoting.submit(() -> { LOGGER.fine(() -> "About to resume " + n + " ~ " + exec);