2
0
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:
Jarrod Johnson
2023-03-29 16:53:40 -04:00
parent 2a3bc61be3
commit f808c542e4

View File

@@ -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):