Skip to content

Commit

Permalink
errors when the connection is closed as we process it
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 5, 2024
1 parent a34fea7 commit 4d4ba9a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xpra/server/server_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2026,6 +2026,9 @@ def auth_failed(msg):
if v:
remote[key] = v
conn = proto._conn
if not conn or proto.is_closed():
authlog(f"connection {proto} is already closed")
return
#authenticator:
if not proto.authenticators:
socktype = conn.socktype_wrapped
Expand Down

0 comments on commit 4d4ba9a

Please sign in to comment.