mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-11-29 15:36:36 -05:00
xfer
This commit is contained in:
parent
437e21b0fe
commit
b9505c031c
3 changed files with 9 additions and 2 deletions
|
|
@ -1285,7 +1285,11 @@ impl RouteSpecStore {
|
|||
|
||||
// Ensure our network class is valid before attempting to assemble any routes
|
||||
if !rti.has_valid_network_class(RoutingDomain::PublicInternet) {
|
||||
bail!("can't make private routes until our node info is valid");
|
||||
let peer_info = rti.get_own_peer_info(RoutingDomain::PublicInternet);
|
||||
bail!(
|
||||
"can't make private routes until our node info is valid: {:?}",
|
||||
peer_info
|
||||
);
|
||||
}
|
||||
|
||||
// Make innermost route hop to our own node
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue