Skip to content

Commit 894f3d9

Browse files
authored
decreasing the timeout of 'wait_for_workload' (GoogleCloudPlatform#1078)
1 parent fa30f23 commit 894f3d9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

xlml/apis/task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ class XpkTask(BaseTask):
170170
task_gcp_config: gcp_config.GCPConfig
171171
task_metric_config: Optional[metric_config.MetricConfig] = None
172172
workload_provision_timeout: datetime.timedelta = datetime.timedelta(
173-
minutes=300
173+
# Set the provision timeout from 300 to 60 minutes for decreasing the duration of failed tasks
174+
minutes=60
174175
)
175176

176177
def run(

0 commit comments

Comments
 (0)