1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

Fix: allow integer values in extCommunityListRaw field for Arista BGP parsing

This commit is contained in:
cooperwinser 2024-12-09 12:08:25 +11:00
parent 2ed949a7a4
commit 7135ec3c9c

View file

@ -65,8 +65,8 @@ class AristaRouteDetail(_AristaBase):
origin: str origin: str
label_stack: t.List = [] label_stack: t.List = []
ext_community_list: t.List[str] = []
ext_community_list_raw: t.List[Union[str, int]] = [] ext_community_list_raw: t.List[Union[str, int]] = []
ext_community_list_raw: t.List[str] = []
community_list: t.List[str] = [] community_list: t.List[str] = []
large_community_list: t.List[str] = [] large_community_list: t.List[str] = []