2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-02-19 14:14:26 +00:00

Fix call to check_fish with wrong number of args

This commit is contained in:
Jarrod Johnson
2024-08-20 17:09:39 -04:00
parent 4ef24351aa
commit a0ab71f7bb

View File

@@ -124,7 +124,7 @@ def _process_snoop(peer, rsp, mac, known_peers, newmacs, peerbymacaddress, byeha
util.spawn(check_fish_handler(handler, peerdata, known_peers, newmacs, peerbymacaddress, machandlers, mac, peer, targurl, targtype))
async def check_fish_handler(handler, peerdata, known_peers, newmacs, peerbymacaddress, machandlers, mac, peer, targurl, targtype):
retdata = await check_fish(('/DeviceDescription.json', peerdata))
retdata = await check_fish(('/DeviceDescription.json', peerdata, targtype))
if retdata:
known_peers.add(peer)
newmacs.add(mac)