diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-11 22:47:48 +0100 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-11 22:47:48 +0100 |
commit | 34721972bad4b7e8e8322a8d7a5ee3c1cb87f213 (patch) | |
tree | 6cedaf9f35d11081496d76ac2cfaedade55e59a3 /doc | |
parent | Merge pull request #15128 from opensourcerouting/fix/bgp_oad_ECOMMUNITY_ORIGI... (diff) | |
download | frr-34721972bad4b7e8e8322a8d7a5ee3c1cb87f213.tar.xz frr-34721972bad4b7e8e8322a8d7a5ee3c1cb87f213.zip |
lib, mgmtd: rename ignore_cbs to ignore_cfg_cbs
Setting this variable to true makes NB ignore only configuration-related
callbacks. CLI-related callbacks are still loaded and executed, so
rename the variable to make it clearer.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer/mgmtd-dev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer/mgmtd-dev.rst b/doc/developer/mgmtd-dev.rst index fb171c4ae..92911bf65 100644 --- a/doc/developer/mgmtd-dev.rst +++ b/doc/developer/mgmtd-dev.rst @@ -89,7 +89,7 @@ An here is the addition to the modules array in ``mgmtd/mgmt_main.c``: ... #ifdef HAVE_STATICD &(struct frr_yang_module_info){.name = "frr-staticd", - .ignore_cbs = true}, + .ignore_cfg_cbs = true}, #endif } |