Fix BrokenPipeError Handling

This commit is contained in:
Jordyn 2026-03-14 04:41:16 -05:00
commit 2fbc2cf051

View file

@ -119,6 +119,7 @@ class Server():
except BrokenPipeError:
# Can't use die because we have no connection... just quit I suppose
self._going_down.set()
raise SystemExit(1)
print("[SENDTHREAD] Quitting due to thread condition!")