As can be seen in the picture the pause time and exec time are wrong the pause time should be `0ms` and exec time should be `24m 20s`

          [JENKINS-67543] wrong pause/exec time in UI

          Simon added a comment -

          I encounter this problem when running this pipeline with the following plugins in Jenkins version 2.440.3:

          Plugin Version
          pipeline-input-step 495.ve9c153f6067b_
          workflow-basic-steps 1049.v257a_e6b_30fb_d
          pipeline-stage-view 2.34
          pipeline-model-definition 2.2198.v41dd8ef6dd56
          pipeline {
              agent any
              stages {
                  stage('Build') {
                      steps {
                          script {
                              try {
                                  timeout(time: 5, unit: 'SECONDS') {
                                      input message: 'Test-timeout'
                                  }
                              } catch (err) {
                              }
                          }
                          sleep 10
                      }
                  }
              }
          }

          Resulting in the following in the stage view:

          Simon added a comment - I encounter this problem when running this pipeline with the following plugins in Jenkins version 2.440.3: Plugin Version pipeline-input-step 495.ve9c153f6067b_ workflow-basic-steps 1049.v257a_e6b_30fb_d pipeline-stage-view 2.34 pipeline-model-definition 2.2198.v41dd8ef6dd56 pipeline {   agent any     stages {         stage( 'Build' ) {             steps {                 script {                     try {                         timeout(time: 5, unit: 'SECONDS' ) {                             input message: 'Test-timeout'                         }                     } catch (err) {                     }                 }                 sleep 10             }         }   } } Resulting in the following in the stage view:

            Unassigned Unassigned
            igreenfield Izek Greenfield
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: