Skip to content

Commit

Permalink
Fix typo in healthz endpoint (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyc60 authored May 30, 2022
1 parent 494374d commit 1190ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def __call__(self, api_key: typing.Optional[str] = Header(...)):
return api_key


@app.get("/heathz")
async def heathz():
@app.get("/healthz")
async def healthz():
return {}


Expand Down

0 comments on commit 1190ecd

Please sign in to comment.