mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-02 19:56:14 -04:00
route fix
This commit is contained in:
parent
2e1920b626
commit
78d06fb187
1 changed files with 4 additions and 1 deletions
|
@ -707,7 +707,10 @@ impl VeilidAPI {
|
|||
}
|
||||
|
||||
let remote_routes = rss.list_remote_routes(|k, _| Some(*k));
|
||||
let mut out = format!("Remote Routes: (count = {}):\n", remote_routes.len());
|
||||
out.push_str(&format!(
|
||||
"Remote Routes: (count = {}):\n",
|
||||
remote_routes.len()
|
||||
));
|
||||
for r in remote_routes {
|
||||
out.push_str(&format!("{}\n", r.encode()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue