Skip to content

Commit 6aa3bf1

Browse files
Mbd06bclaude
andcommitted
fix(orchestrator): join() requires separator arg in Groovy
ArrayList.join() with no args is valid in JS but not Groovy, causing MissingMethodException in the build-graph comparison matrix. Pass ', ' explicitly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c54e215 commit 6aa3bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

genesis/orchestrator/build-graph.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ def formatComparisonMatrix(Map pipelinesAnalysis, Map graphStaleMap, Map graph)
607607
def matchIcon = match ? '' : ''
608608
def detail = ''
609609
if (!match && gResult) {
610-
detail = graphPipelines[pipeline].reasons.take(1).join()
610+
detail = graphPipelines[pipeline].reasons.take(1).join(', ')
611611
}
612612
if (!match && !gResult && pResult) {
613613
detail = 'PIPELINES false positive?'

0 commit comments

Comments
 (0)