You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Developers
Hello, i've created custom pipeline step, but it seems like it is being interrupted after 5 minutes of work. I didn't find any information about this timeout. How can i remove/workaround it?
Jesse Glick
unread,
Aug 31, 2017, 9:05:40 AM8/31/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Dev
Nothing running inside the CPS VM thread should occupy more than a second or so. If your step takes no block argument, and _usually_ runs almost instantaneously but _might_ rarely get held up, use `SynchronousNonBlockingStepExecution`. Otherwise you must return false from `start`, and asynchronously call `StepContext.onSuccess` from another thread. More: