Parallel stage labels displayed on top of each other

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      I noticed today that some of our build logs have written the stage label on top of each other when there was a parallel build step used. It doesn't look like it happens all the time, but does seem to happen when both stages write out at the same time.

      The Jenkinsfile is essentially

      pipeline
      {
          agent any
      
          stages
          {
              stage ('Parallel')
              {
                  steps
                  {
                      parallel(
                          first:  
                          {
                              sh "run_first_test_that_outputs" // In our case PHPUnit                                               
                          }
                          second:
                          {
                              sh "run_second_test_that_outputs" // In our case, session based tests                                 
                          }
                      )
                  }
              }
          }
      }
      

            Assignee:
            Unassigned
            Reporter:
            Patrick Rose
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: