-
New Feature
-
Resolution: Won't Fix
-
Minor
-
None
An optional 'timeout' parameter for the 'input' pipeline step would be very nice. In case of no response within specified amount of time, the build would then fail. Or maybe even make that selectable: fail or continue.
- is blocked by
-
JENKINS-56259 Allow input timeout parameter
-
- Open
-
- is duplicated by
-
JENKINS-39458 input choice parameter needs to support a default value after timeout
-
- Resolved
-
[JENKINS-36235] Add optional 'timeout' parameter to 'input' step
Workflow | Original: JNJira [ 172928 ] | New: JNJira + In-Review [ 184832 ] |
Component/s | New: workflow-plugin [ 18820 ] | |
Component/s | Original: build-pipeline-plugin [ 15962 ] |
Component/s | New: pipeline-general [ 21692 ] |
Component/s | Original: workflow-plugin [ 18820 ] |
Component/s | New: pipeline-input-step-plugin [ 21708 ] | |
Component/s | Original: pipeline [ 21692 ] |
Link |
New:
This issue is duplicated by |
Resolution | New: Won't Fix [ 2 ] | |
Status | Original: Open [ 1 ] | New: Resolved [ 5 ] |
Link | New: This issue is blocked by JENKINS-56259 [ JENKINS-56259 ] |
Comment |
[ Hi All,
Have we tried using options timeout within the stage ? [https://www.jenkins.io/doc/book/pipeline/syntax/#options] Currently testing it, but I feel that would help at least while the attribute is added into the directive. {code:java} pipeline { agent any stages { stage('Example') { options { timeout(time: 1, unit: 'HOURS') } input{...} steps { echo 'Hello World' } } } } {code} ] |