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 1f9795c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/python/tests/test_read_from_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def test_routing_with_az_affinity_strategy_to_1_replica(
addresses=multiple_replicas_cluster.nodes_addr,
protocol=protocol,
read_from=ReadFrom.AZ_AFFINITY,
timeout=2000,
timeout=4000,
client_az=az,
)

Expand Down
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 1f9795c

Please sign in to comment.