fix: make router socket non-blocking to prevent poll loop stalls
Validate and Test / validate-patches (push) Failing after 13s

This commit is contained in:
2026-06-24 04:45:15 -07:00
parent 31bd1d497c
commit f70a8701c9
46 changed files with 47584 additions and 1 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ def render(active_notes):
def connect_router():
router = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
router.settimeout(0.3)
router.setblocking(False)
try:
router.connect(ROUTER_SOCK)
except OSError: