Skip to content

Commit

Permalink
Changed ThreadedTcpServer Timeout to 0.1 (100ms) (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt392code authored Jan 16, 2025
1 parent e6522f2 commit 8a400cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime_gds/common/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def send(self, data):
assert self.dest is not None, "Cannot send data before connect call"
self.sock.send(b"A5A5 %s %s" % (self.dest, data))

def recv(self, timeout=100):
def recv(self, timeout=0.1):
"""Receives data from the threaded tcp server
Receives raw data from the threaded tcp server. This data is expected to have no headers and will be passed as
Expand Down

0 comments on commit 8a400cc

Please sign in to comment.