From 472878dc0fdd5e17500e8a6ba8a65d13e36d9467 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Mon, 18 Jun 2018 09:13:37 -0400 Subject: lib: Add LIB_ERR_DEVELOPMENT Sometimes a error state is detected when we have added new code to FRR, but not updated all the places that we should have. Consider this a developmental escape that needs to be fixed. Signed-off-by: Donald Sharp --- lib/lib_errors.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/lib_errors.c') diff --git a/lib/lib_errors.c b/lib/lib_errors.c index 71ff53053e..ae4635673f 100644 --- a/lib/lib_errors.c +++ b/lib/lib_errors.c @@ -88,6 +88,12 @@ static struct ferr_ref ferr_lib_err[] = { .description = "FRR has detected a problem with NameSpace data from the kernel as it deviates\nfrom what we would expect to happen via normal kernel messaging", .suggestion = "Open an Issue with all relevant log files and restart FRR" }, + { + .code = LIB_ERR_DEVELOPMENT, + .title = "Developmental Escape Error", + .description = "FRR has detected an issue where new development has not properly\nupdated all code paths.", + .suggestion = "Open an Issue with all relevant log files" + }, { .code = END_FERR, } -- cgit v1.2.3