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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user