Fix timeout error.

This commit is contained in:
2026-06-07 00:12:48 +08:00
parent fed9e3de71
commit 09256ee9f3
2 changed files with 14 additions and 0 deletions
+4
View File
@@ -762,6 +762,10 @@ class ServerJarClient(Application):
context = self.get_tls_context()
s = context.wrap_socket(raw, server_hostname=self.host)
# The connection timeout should not become an idle read timeout.
# Keep recv() blocking so quiet but healthy connections stay open.
s.settimeout(None)
with self.sock_lock:
self.sock = s