Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-49272

blueocean 1.4.0 pipeline results screen does not allow clicking on parallel stages

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Blocker Blocker
    • blueocean-plugin
    • None
    • jenkins 2.89.3 LTS
      blueocean 1.4.0
    • Blue Ocean 1.4 - beta 5

      If you run the pipeline below, click on it while it is running , you won't be able to click on the non focussed parallel branch (see video)

       

      I did a production deployment this morning upgrading from blueocean 1.3.4 -> 1.4.0 and immediately received developer reports that they were unable to reliably switch between branch views by clicking on nodes in the pipeline display graph.  This doesn't seem to be occurring with builds that have completed but it is critical usability problem as it prevents developers from monitoring builds in progress (which in our env, is often hours).

       

       Sample: 

      pipeline {
      agent any
      stages {
      
      
      stage("parallely") {
      parallel {
      stage('left') {
      steps {
      sh 'ping -c 100 www.apple.com' 
      }
      
      }
      
      stage('right') {
      steps {
      sh 'ping -c 100 www.apple.com' 
      }
      
      }
      
      }
      }
      }
      
      }

            imeredith Ivan Meredith
            jhoblitt Joshua Hoblitt
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: