diff options
author | Chirag Shah <chirag@nvidia.com> | 2020-10-04 00:34:33 +0200 |
---|---|---|
committer | Chirag Shah <chirag@nvidia.com> | 2020-10-05 22:15:59 +0200 |
commit | f63f5f1947c3b4a99e97494198520f03fb6b063e (patch) | |
tree | 8c1071614c685dc9d8a68322ecd6cf0ce85b7e37 /zebra/zebra_vty.c | |
parent | Merge pull request #6904 from chiragshah6/yang_nb6 (diff) | |
download | frr-f63f5f1947c3b4a99e97494198520f03fb6b063e.tar.xz frr-f63f5f1947c3b4a99e97494198520f03fb6b063e.zip |
*: add errmsg to nb rpc
Display human readable error message in northbound rpc
transaction failure. In case of vtysh nb client, the error
message will be displayed to user.
Testing:
bharat# clear evpn dup-addr vni 1002 ip 11.11.11.11
Error type: generic error
Error description: Requested IP's associated MAC aa:aa:aa:aa:aa:aa is still
in duplicate state
Signed-off-by: Chirag Shah <chirag@nvidia.com>
Diffstat (limited to 'zebra/zebra_vty.c')
-rw-r--r-- | zebra/zebra_vty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 678515170..920fdd6ba 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -3264,7 +3264,8 @@ DEFPY (clear_evpn_dup_addr, if (yang_dup) { listnode_add(input, yang_dup); - ret = nb_cli_rpc("/frr-zebra:clear-evpn-dup-addr", input, NULL); + ret = nb_cli_rpc(vty, "/frr-zebra:clear-evpn-dup-addr", input, + NULL); } list_delete(&input); |