Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
None
-
-
Blue Ocean 1.4 - beta 2
Description
It seems the queued message is showing at an inappropriate time and causing the pipeline graph to flicker.
See https://www.dropbox.com/s/64alkw0h0hl99go/flickering.mov
Example Jenkinsfile
pipeline { agent { docker { image 'maven' } } stages { stage('Build') { steps { sh 'ping -c 3 localhost' } } stage('Browser Tests') { steps { parallel( "Firefox": { sh 'echo \'setting up selenium environment\'' sh 'ping -c 5 localhost' }, "Safari": { sh 'echo \'setting up selenium environment\'' sh 'ping -c 8 localhost' }, "Chrome": { sh 'echo \'setting up selenium environment\'' sh 'ping -c 3 localhost' }, "Internet Explorer": { sh 'echo \'setting up selenium environment\'' sh 'ping -c 4 localhost' } ) } } stage('Static Analysis') { steps { sh 'ping -c 3 localhost' } } stage('Deploy') { steps { sh 'ping -c 3 localhost' } } } }
Attachments
Issue Links
- mentioned in
-
Page Loading...
Based on that .mov it looks like the whole page is being refreshed. Probably an issue with the URL being updated, rather than any individual part of that screen.