temporarily disable relay check

This commit is contained in:
Christien Rioux 2024-08-07 07:53:47 -07:00
parent 9b7380c81c
commit 87958eedde

View File

@ -174,9 +174,11 @@ impl RoutingTable {
// Exclude any nodes that have 'failed to send' state indicating a
// connection drop or inability to reach the node
if e.peer_stats().rpc_stats.failed_to_send > 0 {
return false;
}
// XXX: we should be able to enable this!
// if e.peer_stats().rpc_stats.failed_to_send > 0 {
// return false;
// }
// Until we have a way of reducing a SignedRelayedNodeInfo to a SignedDirectNodeInfo
// See https://gitlab.com/veilid/veilid/-/issues/381