Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
increase timeout
Signed-off-by: abrar <[email protected]>
  • Loading branch information
abrarsheikh committed May 31, 2025
commit 331da33ddf8fc2f4f63dc7ced470ca8a235475c8
4 changes: 3 additions & 1 deletion python/ray/serve/tests/test_autoscaling_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ async def __call__(self):
wait_for_condition(check_num_requests_ge, client=client, id=dep_id, expected=45)
print("Confirmed many queries are inflight.")

wait_for_condition(check_num_replicas_eq, name="A", target=5, app_name="app1")
wait_for_condition(
check_num_replicas_eq, name="A", target=5, app_name="app1", timeout=20
)
print("Confirmed deployment scaled to 5 replicas.")

# Wait for all requests to be scheduled to replicas so they'll be failed
Expand Down