We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5707f commit a2426c0Copy full SHA for a2426c0
plugin/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
@@ -1276,6 +1276,8 @@ public List<Action> loadActions(FlowNode node) throws IOException {
1276
public void saveActions(FlowNode node, List<Action> actions) throws IOException {
1277
if (storage == null) {
1278
throw new IOException("storage not yet loaded");
1279
+ } else if (isComplete()) {
1280
+ throw new IOException("Cannot save actions for " + node + " on completed execution " + this + ": " + actions);
1281
}
1282
storage.saveActions(node, actions);
1283
0 commit comments