-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
Component/s: blueocean-plugin
-
Blue Ocean 1.0-rc3
If you have a pipeline with an empty branch name, it will fail to visualise. This could be a data problem or front end codes expectation.Â
Â
In any case to reproduce, create a pipeline with:Â
node {
stage('first') {
sh 'echo hey'
}
stage('middle') {
parallel(
"top" : { sh 'echo there' },
"" : { echo 'empty one' }
)
}
}
And then look at the visualisation. You wil see it fails to render with an error message:
Â
"Error rendering PipelineRunGraph: Error: convertJenkinsNodeDetails: malformed / missing Jenkins run node."
- relates to
-
JENKINS-42734 Adding a parallel branch with no name results in a slightly bad Jenkinsfile
-
- Closed
-
- links to