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

Inputs not showing in inner most nested parallels

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Minor Minor
    • blueocean-plugin
    • Jenkins 2.43

      Original request
      For this pipeline , in Blue Ocean, it requests input once, the second input request is not shown and the flow is paused

      stage ("stage1") {
        parallel (
          "s1": {
            parallel (
            	"DB": {
            		node {
            			println("Done DB1")
            			println("Done DB2")
            		}
            	},
            	"ENV": {
            		node {
                  input message: 'What do you want to do here?', parameters: [choice(choices: 'Rerun\nSkip\nAbort', description: '', name: '')], submitterParameter: ''
                  println("done env")
            		}
            	}
            )
            node {
            		println("Done ENV2")
            }
            node {
              input message: 'What do you want to do here?', parameters: [choice(choices: 'Rerun\nSkip\nAbort', description: '', name: '')], submitterParameter: ''
              println("Done ")
            }	
          }
        )
      }
      

        1. first.png
          first.png
          59 kB
        2. jenkins_BO_bug_1.png
          jenkins_BO_bug_1.png
          21 kB
        3. jenkins_BO_bug_2.png
          jenkins_BO_bug_2.png
          24 kB
        4. second.png
          second.png
          47 kB

            Unassigned Unassigned
            kopper8 Avi K
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: