From 27b4417308a14e5dc68f0a3ada7cae06866179a0 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand <benjamin.bertrand@esss.se> Date: Wed, 27 Mar 2019 19:07:47 +0100 Subject: [PATCH] Increase timeout for core services update As the core service update doesn't depend anymore on each other but only on the inventory update, 2 can be launched almost at the same time. As they can't run in parallel, the second one will only start when the first one is done, meaning that it can take more than 180 seconds to complete. Increasing the timeout to 500 seconds should avoid the task to be reported as failed when it just took longer to run. JIRA INFRA-895 #action In Progress --- app/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils.py b/app/utils.py index 29740a0..a4c2f95 100644 --- a/app/utils.py +++ b/app/utils.py @@ -252,6 +252,7 @@ def trigger_core_services_update(): "job_template": job_template, "resource": resource, "depends_on": inventory_task.id, + "timeout": 500, } current_app.logger.info(f"Launch new job to update core services: {job_template}") task = current_user.launch_task( -- GitLab