From 80a74b007bfb5e3c0a15aefa248de81f5dbc1bcb Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Fri, 8 Feb 2019 11:01:40 +0100 Subject: [PATCH] Updated timeouts for common operations: deploy, delete, primitive Change-Id: I375143893dd65df5ad19f87c9adbee2f724a1322 Signed-off-by: garciadeblas --- osm_lcm/ns.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 83e7147..7bfb898 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -69,9 +69,9 @@ def populate_dict(target_dict, key_list, value): class NsLcm(LcmBase): timeout_vca_on_error = 5 * 60 # Time for charm from first time at blocked,error status to mark as failed - total_deploy_timeout = 2 * 3600 # global timeout for deployment - timeout_charm_delete = 10 * 60 - timeout_primitive = 10 * 60 # timeout for primitive execution + total_deploy_timeout = 30 * 60 # global timeout for deployment + timeout_charm_delete = 5 * 60 + timeout_primitive = 5 * 60 # timeout for primitive execution def __init__(self, db, msg, fs, lcm_tasks, ro_config, vca_config, loop): """ -- 2.25.1