diff options
author | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-06-21 08:19:06 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2021-06-21 10:49:04 +0000 |
commit | cf34150deaf6a95bc334abd456da033396425344 (patch) | |
tree | 111a6646fd92e02c4b61d8a0b312cc9e3279fa8d | |
parent | e6f19e85acaba4cb6277b6b2f3ca6aa8ed04f2f8 (diff) |
FrameworkSetup: fix timeout in Arm setup
Framework extraction in Arm jobs is taking longer than the current
timeout. Increase the timeout to fix this.
Change-Id: Iaddbbe9690eabbed47b19d5264a4f4502e5ed948
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
-rw-r--r-- | resources/libraries/python/SetupFramework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index 26a07c3a38..58225c6031 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -105,7 +105,7 @@ def extract_tarball_at_node(tarball, node): node, cmd, message=f"Failed to extract {tarball} at node {node[u'type']} " f"host {node[u'host']}, port {node[u'port']}", - timeout=90, include_reason=True + timeout=120, include_reason=True ) logger.console( f"Extracting tarball to {con.REMOTE_FW_DIR} on {node[u'type']} " |