summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-01-25 10:30:10 +0200
committerGitHub <noreply@github.com>2023-01-25 10:30:10 +0200
commit88bcd9f7ae2a144b42f81c5dc71b22133cc5adb3 (patch)
treeedc4ab6ed3db71b288c540354889b66db12467c4
parent9ffd15013a7597106770bf8383be462694204bde (diff)
parent3cdb03fba7b40240fb38469a12b7b05a11043e09 (diff)
Merge pull request #12684 from chiragshah6/fdev2
bgpd: evpn route detail json display non prett
-rw-r--r--bgpd/bgp_evpn_vty.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/bgpd/bgp_evpn_vty.c b/bgpd/bgp_evpn_vty.c
index ca6f079401..3c7fb4cb17 100644
--- a/bgpd/bgp_evpn_vty.c
+++ b/bgpd/bgp_evpn_vty.c
@@ -4807,8 +4807,15 @@ DEFUN(show_bgp_l2vpn_evpn_route,
evpn_show_all_routes(vty, bgp, type, json, detail);
- if (uj)
- vty_json(vty, json);
+ if (uj) {
+ if (detail) {
+ vty_out(vty, "%s\n", json_object_to_json_string(json));
+ json_object_free(json);
+ } else {
+ vty_json(vty, json);
+ }
+ }
+
return CMD_SUCCESS;
}