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:
commit
dd0d5357dd
1 changed files with 1 additions and 1 deletions
|
|
@ -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] = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue