-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
Jenkins: 2.259
Lockable resources plugin: 2.10
Pipeline Input Step: 2.12
After restart, having input step inside lock and several jobs waiting to acquire the lock, not able to Proceed or Abort anymore.
Steps to reproduce:
1) Have "input" inside a lock block
2) Start several build of the same job (the earliest will block on "input" and others block on "lock")
3) Restart Jenkins
Observed behaviour:
Can not Proceed or Abort the build with buttons anymore. Even generic abort button does not work for the build, have to "kill" it.
Expected behaviour:
One can Proceed or Abort the build.
Minimal pipeline to reproduce:
pipeline { agent none stages { stage('a') { steps { lock('lock-me-in') { script { input 'Are you okay?' } } } } } }
Output in the jenkins log:
WARNING org.jenkinsci.plugins.workflow.support.steps.input.InputAction: no flow execution found for input-simple #8
- is related to
-
JENKINS-44855 input leaves build hanging - input.InputAction loadExecutions no flow execution found
-
- Open
-
-
JENKINS-37998 Warning log "no flow execution found for pipelinejob #1"
-
- Resolved
-
[JENKINS-63820] No flow execution for input in lock block after restart
Description |
Original:
After restart, having input step inside lock and several jobs waiting to acquire the lock, not able anymore to Proceed or Abort. Steps to reproduce: 1) Have "input" inside a lock block 2) Start several build of the same job (the earliest will block on "input" and others block on "lock") 3) Restart Jenkins Observed behaviour: Can not Proceed or Abort the build with buttons anymore. Even generic abort button does not work for the build, have to "kill" it. Expected behaviour: One can Proceed or Abort the build. Minimal pipeline to reproduce: {noformat} pipeline { agent none stages { stage('a') { steps { lock('lock-me-in') { script { input 'Are you okay?' } } } } } } {noformat} Output in the jenkins log: {noformat} WARNING org.jenkinsci.plugins.workflow.support.steps.input.InputAction: no flow execution found for input-simple #8 {noformat} |
New:
After restart, having input step inside lock and several jobs waiting to acquire the lock, not able to Proceed or Abort anymore. Steps to reproduce: 1) Have "input" inside a lock block 2) Start several build of the same job (the earliest will block on "input" and others block on "lock") 3) Restart Jenkins Observed behaviour: Can not Proceed or Abort the build with buttons anymore. Even generic abort button does not work for the build, have to "kill" it. Expected behaviour: One can Proceed or Abort the build. Minimal pipeline to reproduce: {noformat} pipeline { agent none stages { stage('a') { steps { lock('lock-me-in') { script { input 'Are you okay?' } } } } } } {noformat} Output in the jenkins log: {noformat} WARNING org.jenkinsci.plugins.workflow.support.steps.input.InputAction: no flow execution found for input-simple #8 {noformat} |
Assignee | Original: Tobias Gruetzmacher [ tgr ] |
Link |
New:
This issue is related to |
Link | New: This issue is related to JENKINS-44855 [ JENKINS-44855 ] |