Skip to content

Commit

Permalink
Use get for the livez and readyz
Browse files Browse the repository at this point in the history
  • Loading branch information
petrosbaltzis authored and Petros Baltzis committed Oct 2, 2023
1 parent 92cb486 commit 98000fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vllm/entrypoints/api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
engine = None


@app.post("/livez")
@app.get("/livez")
def livez():
return ""


@app.post("/readyz")
@app.get("/readyz")
def readyz():
return ""

Expand Down

0 comments on commit 98000fa

Please sign in to comment.