24 lines
317 B
Python
24 lines
317 B
Python
# __start__
|
|
from ray import serve
|
|
|
|
import time
|
|
import requests
|
|
|
|
|
|
@serve.deployment
|
|
def sleeper():
|
|
time.sleep(1)
|
|
|
|
|
|
s = sleeper.bind()
|
|
|
|
serve.run(s)
|
|
|
|
while True:
|
|
requests.get("http://localhost:8000/")
|
|
# __end__
|
|
break
|
|
|
|
response = requests.get("http://localhost:8000/")
|
|
assert response.status_code == 200
|