From c9b758a63fc63e11b4af1112ebff921afa06f970 Mon Sep 17 00:00:00 2001 From: sainc-g Date: Fri, 6 Feb 2026 12:34:43 +0530 Subject: [PATCH] Update EVPN EVI Detail Parser schema to make peer route keys optional Updated the schema for `ShowL2vpnEvpnEviDetail` parser to make peer route keys optional under the `bridge_domain -> peer` hierarchy. --- src/genie/libs/parser/iosxe/show_l2vpn.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/genie/libs/parser/iosxe/show_l2vpn.py b/src/genie/libs/parser/iosxe/show_l2vpn.py index 2ea3af619..1f2180b11 100755 --- a/src/genie/libs/parser/iosxe/show_l2vpn.py +++ b/src/genie/libs/parser/iosxe/show_l2vpn.py @@ -4667,10 +4667,10 @@ class ShowL2vpnEvpnEviDetailSchema(MetaParser): }, Optional('peer'): { Any(): { - 'mac_routes': int, - 'mac_ip_routes': int, - 'imet_routes': int, - 'ead_routes': int, + optional('mac_routes'): int, + optional('mac_ip_routes'): int, + optional('imet_routes'): int, + optional('ead_routes'): int, }, }, },