Skip to content

Commit d0015c9

Browse files
committed
Fix refactoring error in a78b554.
Fix #1546.
1 parent 7438b8e commit d0015c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/faq/health_check_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def health_check(connection, request):
88
if request.path == "/healthz":
9-
return connection.respond(HTTPStatus.OK, b"OK\n")
9+
return connection.respond(HTTPStatus.OK, "OK\n")
1010

1111
async def echo(websocket):
1212
async for message in websocket:

0 commit comments

Comments
 (0)