]> git.puffer.fish Git - mirror/frr.git/commitdiff
fabricd: fix running config 9132/head
authorIgor Ryzhov <iryzhov@nfware.com>
Mon, 21 Jun 2021 15:12:45 +0000 (18:12 +0300)
committermergify-bot <noreply@mergify.io>
Fri, 23 Jul 2021 09:08:39 +0000 (09:08 +0000)
Daemons should not output warnings into the running config.

Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
(cherry picked from commit b0f8f4d23eaecde6cf9650bf986e2c5bef82b065)

isisd/isis_circuit.c

index 896bbc2cb05042371f9c981e2b3c611e7cad7645..bccb9065f4cdfefd9c5728689bb59ef3623023fe 100644 (file)
@@ -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 */