Skip to content

Commit

Permalink
Turn off timeout for now when checking for a new message.
Browse files Browse the repository at this point in the history
  • Loading branch information
joestubbs committed Jul 12, 2024
1 parent 0c97c30 commit 8582235
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ def main():
while not stop:
socket = get_socket()
try:
message = get_next_msg(socket, timeout=SOCKET_TIMEOUT)
# message = get_next_msg(socket, timeout=SOCKET_TIMEOUT)
message = get_next_msg(socket)
# message = get_next_msg(socket)
except Exception as e:
# we got a resource temporarily unavailable error; sleep for a second and try again
Expand Down

0 comments on commit 8582235

Please sign in to comment.