From b0f8f4d23eaecde6cf9650bf986e2c5bef82b065 Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Mon, 21 Jun 2021 18:12:45 +0300 Subject: [PATCH] fabricd: fix running config Daemons should not output warnings into the running config. Signed-off-by: Igor Ryzhov --- isisd/isis_circuit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/isisd/isis_circuit.c b/isisd/isis_circuit.c index 896bbc2cb0..bccb9065f4 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 */