mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 03:47:47 +00:00
lib: fix apply_finish callback in northbound
When a node is top-level, we shouldn't stop the whole processing, we should just skip this single node. Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
This commit is contained in:
parent
a44918640f
commit
8287fbe453
@ -1873,7 +1873,7 @@ static void nb_transaction_apply_finish(struct nb_transaction *transaction,
|
|||||||
|
|
||||||
dnode = lyd_parent(dnode);
|
dnode = lyd_parent(dnode);
|
||||||
if (!dnode)
|
if (!dnode)
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The dnode from 'delete' callbacks point to elements
|
* The dnode from 'delete' callbacks point to elements
|
||||||
|
Loading…
Reference in New Issue
Block a user