Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@
import jenkins.util.SystemProperties;
import jenkins.util.Timer;
import org.jenkinsci.plugins.workflow.FilePathUtils;
import org.jenkinsci.plugins.workflow.actions.TimingAction;
import org.jenkinsci.plugins.workflow.flow.BlockableResume;
import org.jenkinsci.plugins.workflow.flow.DurabilityHintProvider;
import org.jenkinsci.plugins.workflow.flow.FlowCopier;
Expand Down Expand Up @@ -1087,10 +1086,6 @@ private final class FailOnLoadListener implements GraphListener {

private final class GraphL implements GraphListener {
@Override public void onNewHead(FlowNode node) {
if (node.getPersistentAction(TimingAction.class) == null) {
node.addAction(new TimingAction());
}

FlowExecution exec = getExecution();
if (node instanceof FlowEndNode) {
finish(((FlowEndNode) node).getResult(), exec != null ? exec.getCauseOfFailure() : null);
Expand Down