Skip to content

Commit

Permalink
cannot have timeout 0; needs to be 0.00001
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Dec 1, 2024
1 parent 90a88d4 commit 6daa8e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hudes/websocket_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def run_loop(self):

# figure out what we are recv'ing if anything
try:
msg = websocket.recv(timeout=0.0)
msg = websocket.recv(timeout=0.00001)
self.recv_q.put(msg)
except TimeoutError:
pass
Expand Down

0 comments on commit 6daa8e7

Please sign in to comment.