diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 17:12:45 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 17:12:45 +0200 |
commit | b0f8f4d23eaecde6cf9650bf986e2c5bef82b065 (patch) | |
tree | 383a7e079b9422f58f743a3ace8b4861cb98b8fe /isisd | |
parent | Merge pull request #8841 from volta-networks/fix_ospf6_bad_seqnum (diff) | |
download | frr-b0f8f4d23eaecde6cf9650bf986e2c5bef82b065.tar.xz frr-b0f8f4d23eaecde6cf9650bf986e2c5bef82b065.zip |
fabricd: fix running config
Daemons should not output warnings into the running config.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/isis_circuit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/isisd/isis_circuit.c b/isisd/isis_circuit.c index 896bbc2cb..bccb9065f 100644 --- a/isisd/isis_circuit.c +++ b/isisd/isis_circuit.c @@ -1076,10 +1076,8 @@ static int isis_interface_config_write(struct vty *vty) isis = isis_lookup_by_vrfid(vrf->vrf_id); - if (isis == NULL) { - vty_out(vty, "ISIS routing instance not found"); + if (isis == NULL) return 0; - } FOR_ALL_INTERFACES (vrf, ifp) { /* IF name */ |