-
Type:
Bug
-
Resolution: Not A Defect
-
Priority:
Critical
-
Component/s: _unsorted
-
Environment:jenkins pipeline plugin
The timeout is not enabled in the retry of the pipeline. I tried the code..when the timeout exceeded, the retry option was working but without timeout.
stage ('Build') {
options
{ retry(2) timeout(time: 10, unit: 'MINUTES') }steps
{ //code } post {
success
}
}