diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-01-25 10:30:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-25 10:30:10 +0200 |
| commit | 88bcd9f7ae2a144b42f81c5dc71b22133cc5adb3 (patch) | |
| tree | edc4ab6ed3db71b288c540354889b66db12467c4 | |
| parent | 9ffd15013a7597106770bf8383be462694204bde (diff) | |
| parent | 3cdb03fba7b40240fb38469a12b7b05a11043e09 (diff) | |
Merge pull request #12684 from chiragshah6/fdev2
bgpd: evpn route detail json display non prett
| -rw-r--r-- | bgpd/bgp_evpn_vty.c | 11 |
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; } |
