mirror of
https://github.com/xcat2/confluent.git
synced 2026-01-09 01:22:30 +00:00
Ignore forbidden transmits on multicast
This commit is contained in:
@@ -345,7 +345,7 @@ def _find_service(service, target):
|
||||
try:
|
||||
net4.sendto(msg, (mcastv4addr, 1900))
|
||||
except socket.error as se:
|
||||
if se.errno != 101:
|
||||
if se.errno != 101 and se.errno != 1:
|
||||
raise
|
||||
msg = smsg.format(bcast, service)
|
||||
if not isinstance(msg, bytes):
|
||||
|
||||
Reference in New Issue
Block a user