Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
crnicholson committed Dec 3, 2024
1 parent 8881991 commit 14252bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/groundStation/uploader/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def flask_thread():
# Main WebSocket server coroutine.
async def websocket():
print(f"Starting server on ws://0.0.0.0:{WEBSOCKET_PORT}")
async with websockets.serve(handle_connection, "0.0.0.0", WEBSOCKET_PORT):
async with websockets.serve(handle_connection, "localhost", WEBSOCKET_PORT):
await asyncio.Future() # Run forever.


Expand Down

0 comments on commit 14252bb

Please sign in to comment.