Skip to content

Commit

Permalink
[Serve] Fix autoscaling_single_deployment_smoke_test (ray-project#38219)
Browse files Browse the repository at this point in the history
After ray-project#38113, each node needs to have a "proxy" resource to deploy the special proxy deployment.

Signed-off-by: Jiajun Yao <[email protected]>
  • Loading branch information
jjyao authored Aug 8, 2023
1 parent ab7a761 commit 71c0cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/serve_tests/workloads/serve_test_cluster_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def setup_local_single_node_cluster(
redis_port=6380 if i == 0 else None,
num_cpus=num_cpu_per_node,
num_gpus=0,
resources={str(i): 2},
resources={str(i): 2, "proxy": 1},
)
ray.init(address=cluster.address, dashboard_host="0.0.0.0", namespace=namespace)
serve_client = serve.start(
Expand Down

0 comments on commit 71c0cc5

Please sign in to comment.