executionTimeout property

  1. @TagNumber(27)
Duration executionTimeout

Maximum build execution time.

Not to be confused with scheduling_timeout.

If the timeout is reached, the task will be signaled according to the deadline section of https://chromium.googlesource.com/infra/luci/luci-py/+/HEAD/client/LUCI_CONTEXT.md and status_details.timeout is set.

The task will have grace_period amount of time to handle cleanup before being forcefully terminated.

Implementation

@$pb.TagNumber(27)
$4.Duration get executionTimeout => $_getN(22);
  1. @TagNumber(27)
void executionTimeout=(Duration v)

Implementation

@$pb.TagNumber(27)
set executionTimeout($4.Duration v) {
  setField(27, v);
}