Skip to content

Commit

Permalink
fix: lower camel case (#3942)
Browse files Browse the repository at this point in the history
Signed-off-by: zcq98 <zhaocongqi_yewu@cmss.chinamobile.com>
  • Loading branch information
zcq98 authored and bobz965 committed Apr 23, 2024
1 parent 5fccb52 commit 7210674
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/ovs/ovn-nb-acl.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ func (c *OVNNbClient) CreateSgBaseACL(sgName, direction string) error {
}

// allow arp
AllArpMatch := NewAndACLMatch(
allArpMatch := NewAndACLMatch(
NewACLMatch(portDirection, "==", "@"+pgName, ""),
NewACLMatch("arp", "", "", ""),
)
newACL(AllArpMatch.String())
newACL(allArpMatch.String())

// icmpv6
icmpv6Match := NewAndACLMatch(
Expand Down

0 comments on commit 7210674

Please sign in to comment.