mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-28 09:11:34 +00:00
protocols/kad/tests: Ignore Kademlia routing update event (#1993)
In the `libp2p-relay` Kademlia discovery test, ignore Kademlia routing update events when waiting for a ping from the destination node.
This commit is contained in:
@ -668,6 +668,9 @@ fn firewalled_src_discover_firewalled_dst_via_kad_and_connect_to_dst_via_routabl
|
||||
break;
|
||||
}
|
||||
}
|
||||
SwarmEvent::Behaviour(CombinedEvent::Kad(KademliaEvent::RoutingUpdated {
|
||||
..
|
||||
})) => {}
|
||||
e => panic!("{:?}", e),
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user