Pipeline job hung after restart

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

XMLWordPrintable

      I can reproduce it fairly consistently with, make sure that some stages are running and then restart:

      pipeline {
          agent none
          stages {
              stage('BuildAndTest') {
                  matrix {
                      agent any
                      axes {
                          axis {
                              name 'PLATFORM'
                              values 'linux', 'windows', 'mac'
                          }
                          axis {
                              name 'BROWSER'
                              values 'firefox', 'chrome', 'safari', 'edge'
                          }
                      }
                      stages {
                          stage('Build') {
                              steps {
                                  echo "Do Build for ${PLATFORM} - ${BROWSER}"
                              }
                          }
                          stage('Test') {
                              steps {
                                  echo "Do Test for ${PLATFORM} - ${BROWSER}"
                              }
                          }
                      }
                  }
              }
          }
      }
      

      Thread dump in https://gist.github.com/timja/6faee5e4876a8c7f5235563dc865c76e if it helps

            Assignee:
            Unassigned
            Reporter:
            Tim Jacomb
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: