Skip to content

Commit 4596ea5

Browse files
authored
Merge pull request jenkinsci#246 from jglick/NoSuchElementException
Diagnosis for `NoSuchElementException` from `ForkScanner.setHeads`
2 parents 02bdf33 + d03c787 commit 4596ea5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/org/jenkinsci/plugins/workflow/graphanalysis/ForkScanner.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,10 @@ ArrayDeque<ParallelBlockStart> leastCommonAncestor(@NonNull final Set<FlowNode>
439439
}
440440
}
441441

442+
if (parallelForks.isEmpty()) {
443+
throw new IllegalStateException("No least common ancestor found from " + heads);
444+
}
445+
442446
// If we hit issues with the ordering of blocks by depth, apply a sorting to the parallels by depth
443447
return convertForksToBlockStarts(parallelForks);
444448
}
@@ -450,7 +454,6 @@ protected void setHeads(@NonNull Collection<FlowNode> heads) {
450454
headIds.add(f.getId());
451455
}
452456
parallelBlockStartStack = leastCommonAncestor(new LinkedHashSet<>(heads));
453-
assert parallelBlockStartStack.size() > 0;
454457
currentParallelStart = parallelBlockStartStack.pop();
455458
currentParallelStartNode = currentParallelStart.forkStart;
456459
myCurrent = currentParallelStart.unvisited.pop();

0 commit comments

Comments
 (0)