diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-06-03 00:13:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 00:13:42 +0200 |
commit | d64162ce84ffeefbbc95a91e7a87b2544926c886 (patch) | |
tree | 1a61fc71c469b4fefb75179e3cc4d0bd2ad3de37 /lib/vrf.c | |
parent | Merge pull request #8644 from idryzhov/fix-vrf-bind (diff) | |
parent | northbound: KISS always batch yang config (file read), it's faster (diff) | |
download | frr-d64162ce84ffeefbbc95a91e7a87b2544926c886.tar.xz frr-d64162ce84ffeefbbc95a91e7a87b2544926c886.zip |
Merge pull request #8210 from LabNConsulting/chopps/always-batch
northbound: KISS always batch yang config, it's faster.
Diffstat (limited to 'lib/vrf.c')
-rw-r--r-- | lib/vrf.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -690,10 +690,9 @@ int vrf_handler_create(struct vty *vty, const char *vrfname, vrfname); nb_cli_enqueue_change(vty, xpath_list, NB_OP_CREATE, NULL); - ret = nb_cli_apply_changes(vty, xpath_list); + ret = nb_cli_apply_changes_clear_pending(vty, xpath_list); if (ret == CMD_SUCCESS) { VTY_PUSH_XPATH(VRF_NODE, xpath_list); - nb_cli_pending_commit_check(vty); vrfp = vrf_lookup_by_name(vrfname); if (vrfp) VTY_PUSH_CONTEXT(VRF_NODE, vrfp); |