Skip to content

Commit

Permalink
upload timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Adar Ovadia <[email protected]>
  • Loading branch information
Adar Ovadia committed Nov 20, 2024
1 parent 8a14359 commit 3136678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/python/tests/utils/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(
stderr=subprocess.PIPE,
text=True,
)
output, err = p.communicate(timeout=40)
output, err = p.communicate(timeout=80)
if p.returncode != 0:
raise Exception(f"Failed to create a cluster. Executed: {p}:\n{err}")
self.parse_cluster_script_start_output(output)
Expand Down

0 comments on commit 3136678

Please sign in to comment.