Skip to content

Commit

Permalink
fix linkbw_any regex (openconfig#3589)
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore authored Nov 14, 2024
1 parent 466c524 commit 1a4307f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ var (
extCommunitySet = map[string]string{
"linkbw_1M": "link-bandwidth:23456:1M",
"linkbw_2G": "link-bandwidth:23456:2G",
"linkbw_any": "^link-bandwidth:.*:.$",
"linkbw_any": "^link-bandwidth:.*:.*$",
}

extCommunitySetCisco = map[string]string{
"linkbw_1M": "23456:1000000",
"linkbw_2G": "23456:2000000000",
"linkbw_any": "^.*:.$",
"linkbw_any": "^.*:.*$",
}

CommunitySet = map[string]string{
Expand Down

0 comments on commit 1a4307f

Please sign in to comment.