2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-04-13 20:31:29 +00:00

Do not worry about failure to reply to a SSDP confluent request

This commit is contained in:
Jarrod Johnson
2025-04-15 15:40:17 -04:00
parent e27f07ac36
commit a138bef551

View File

@@ -297,7 +297,10 @@ def snoop(handler, byehandler=None, protocol=None, uuidlookup=None):
continue
if not isinstance(reply, bytes):
reply = reply.encode('utf8')
s.sendto(reply, peer)
try:
s.sendto(reply, peer)
except Exception:
pass
break
r = select.select((net4, net6), (), (), 0.2)
if r: