diff options
author | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-03-24 15:28:22 +0100 |
---|---|---|
committer | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-03-24 15:28:22 +0100 |
commit | 4f0b7994d54b904dc3da2ada14c69e743df4d911 (patch) | |
tree | 3669a62759b5548492ea7ada6b382dbd96cab486 | |
parent | 80b2451e43972ef7a1a177b8632f3bf952f3a8c7 (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: I436d3131fcd7c25fd1f9607095712b4a8aa2d28c
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 c27dbe08c2..880b1c94ce 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=30, include_reason=True + timeout=60, include_reason=True ) logger.console( f"Extracting tarball to {con.REMOTE_FW_DIR} on {node[u'type']} " |