Skip to content

Commit

Permalink
Increase runner_timeout_interval for Kubernetes
Browse files Browse the repository at this point in the history
Since Kubernetes provisioning includes pulling,
provisioning may take more time.
  • Loading branch information
r4victor committed Feb 5, 2024
1 parent 02e635f commit be958c3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -454,4 +454,6 @@ def _submit_job_to_runner(
def _get_runner_timeout_interval(backend_type: BackendType) -> timedelta:
if backend_type == BackendType.LAMBDA:
return timedelta(seconds=1200)
if backend_type == BackendType.KUBERNETES:
return timedelta(seconds=1200)
return timedelta(seconds=600)

0 comments on commit be958c3

Please sign in to comment.