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

Long names of parallel blocks make actions in console view unusable

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Minor Minor
    • core, pipeline
    • None

      Hi,

      I saw that on our Jenkins instance there are jobs with really long parallel stages names.

      When we open Console view all actions are hidden behind parallel stages names.
      In such scenario both actions and parallel stages names are not usable.

      This issue generally happens even for shorter names, as seen in the attachment. For longer ones it get's more annoying as text on the buttons is completely hidden.

      Here is pipeline to reproduce :

      pipeline {
          agent none    stages {
              stage('Hello') {
                  steps {
                      script {
                          def parallelSteps = [
                              "run echo hello world from step 1": {echo "world"},
                              "run echo hello world from step 2": {echo "world"},
                              "run echo hello world from step 3": {echo "world"},
                              "run echo hello world from step 4": {echo "world"},
                              "run echo hello world from step 5": {echo "world"},
                              "run echo hello world from step 6": {echo "world"},
                              "run echo hello world from step 7": {echo "world"},
                              "run echo hello world from step 8": {echo "world"},
                              "run echo hello world from step 9": {echo "world"},
                              "run echo hello world from step 10": {echo "world"},
                              "run echo hello world from step 11": {echo "world"},
                              "run echo hello world from step 12": {echo "world"},
                              "run echo hello world from step 13": {echo "world"},
                              "run echo hello world from step 14": {echo "world"},
                              "run echo hello world from step 15": {echo "world"},
                              "run echo hello world from step 16": {echo "world"},
                              "run echo hello world from step 17": {echo "world"},
                              "run echo hello world from step 18": {echo "world"},
                              "run echo hello world from step 19": {echo "world"},
                              "run echo hello world from step 20": {echo "world"},
                          ]
                          
                          parallel parallelSteps
                      }
                  }
              }
          }
      }
       

            Unassigned Unassigned
            novinxy Grzegorz
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: