server : fix wait in test_cancel_requests() test (#20601)

* server : fix wait in test_cancel_requests() test

* codeowners : add team for server tests
This commit is contained in:
Georgi Gerganov 2026-03-15 20:54:37 +02:00 committed by GitHub
parent ebbf544ed1
commit 88915cb55c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -563,7 +563,7 @@ def test_cancel_request():
except requests.exceptions.ReadTimeout:
pass # expected
# make sure the slot is free
time.sleep(1) # wait for HTTP_POLLING_SECONDS
time.sleep(2)
res = server.make_request("GET", "/slots")
assert res.body[0]["is_processing"] == False