Merge pull request #11268 from opensourcerouting/fix/drop_rpki_cli_server_redundand

bgpd: Drop redundand output under `show rpki prefix-table`
This commit is contained in:
Donald Sharp 2022-05-24 17:51:22 -04:00 committed by GitHub
commit 8cc19ddef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 8 deletions

View File

@ -1194,14 +1194,6 @@ DEFUN (show_rpki_prefix_table,
RPKI_OUTPUT_STRING
"Show validated prefixes which were received from RPKI Cache\n")
{
struct listnode *cache_node;
struct cache *cache;
for (ALL_LIST_ELEMENTS_RO(cache_list, cache_node, cache)) {
vty_out(vty, "host: %s port: %s\n",
cache->tr_config.tcp_config->host,
cache->tr_config.tcp_config->port);
}
if (is_synchronized())
print_prefix_table(vty);
else