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

Merge pull request #306 from cooperwinser/main

Fix: allow integer values in ext_community_list_raw field for Arista BGP…

Allows Integer and String types for the Arista extended communities.
This commit is contained in:
Jason Hall 2025-05-17 10:09:42 -04:00 committed by GitHub
commit dd0d5357dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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