From 9e6f4e4e68a0688b9d85d91f6590c91b077a63dc Mon Sep 17 00:00:00 2001 From: Oliver Uhlar Date: Tue, 30 Jul 2024 08:42:49 +0200 Subject: [PATCH] add secViolEr status type for nxos --- src/genie/libs/parser/nxos/show_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genie/libs/parser/nxos/show_interface.py b/src/genie/libs/parser/nxos/show_interface.py index c52d009887..39842d1f03 100755 --- a/src/genie/libs/parser/nxos/show_interface.py +++ b/src/genie/libs/parser/nxos/show_interface.py @@ -3758,7 +3758,7 @@ def cli(self, interface="", output=None): # containing any number of blank spaces. This makes it very difficult to use a regular # expression to dynamically match the status column, so hard-coding offers a happy # middle ground. - r'(?Pconnected|disabled|sfpAbsent|noOperMem|notconnec|xcvrAbsen|down|linkFlapE)\s+' + r'(?Pconnected|disabled|sfpAbsent|noOperMem|notconnec|xcvrAbsen|down|linkFlapE|secViolEr)\s+' r'(?P\S+)\s+' r'(?P\S+)\s+' r'(?P\S+)\s*'