Sébastien Hinderer
unread,Sep 16, 2020, 12:35:35 PM9/16/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jenkins...@googlegroups.com
Dear all,
I just added a timeout option to a pipeline:
pipeline {
agent { label 'foo' }
options {
timeout(time: 1, unit: 'HOURS')
}
stages { ... }
post { ... }
}
The timeout is not taken into account. The job is running for several
hours now and blocked whereas I was expecting it to be aborted due to
the timeout.
Am I doing something wrong?
thanks,
Sébastien.