Skip to content

Commit

Permalink
Fix refactoring error in a78b554.
Browse files Browse the repository at this point in the history
Fix #1546.
  • Loading branch information
aaugustin committed Nov 13, 2024
1 parent 7438b8e commit d0015c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/faq/health_check_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def health_check(connection, request):
if request.path == "/healthz":
return connection.respond(HTTPStatus.OK, b"OK\n")
return connection.respond(HTTPStatus.OK, "OK\n")

async def echo(websocket):
async for message in websocket:
Expand Down

0 comments on commit d0015c9

Please sign in to comment.