File tree 1 file changed +4
-1
lines changed
src/main/java/org/jenkinsci/plugins/workflow/graphanalysis
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -439,6 +439,10 @@ ArrayDeque<ParallelBlockStart> leastCommonAncestor(@NonNull final Set<FlowNode>
439
439
}
440
440
}
441
441
442
+ if (parallelForks .isEmpty ()) {
443
+ throw new IllegalStateException ("No least common ancestor found from " + heads );
444
+ }
445
+
442
446
// If we hit issues with the ordering of blocks by depth, apply a sorting to the parallels by depth
443
447
return convertForksToBlockStarts (parallelForks );
444
448
}
@@ -450,7 +454,6 @@ protected void setHeads(@NonNull Collection<FlowNode> heads) {
450
454
headIds .add (f .getId ());
451
455
}
452
456
parallelBlockStartStack = leastCommonAncestor (new LinkedHashSet <>(heads ));
453
- assert parallelBlockStartStack .size () > 0 ;
454
457
currentParallelStart = parallelBlockStartStack .pop ();
455
458
currentParallelStartNode = currentParallelStart .forkStart ;
456
459
myCurrent = currentParallelStart .unvisited .pop ();
You can’t perform that action at this time.
0 commit comments