Skip to content

Commit

Permalink
listen on all
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Oct 8, 2024
1 parent 82a56a8 commit 5c4db34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hudes/websocket_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ async def process_client(websocket, client_runner_q):

async def run_server(stop, client_runner_q):
async with serve(
partial(process_client, client_runner_q=client_runner_q), "localhost", 8765
partial(process_client, client_runner_q=client_runner_q), None, 8765
):
await stop

Expand Down

0 comments on commit 5c4db34

Please sign in to comment.