Skip to content

Commit

Permalink
fix: lower camel case
Browse files Browse the repository at this point in the history
Signed-off-by: zcq98 <[email protected]>
  • Loading branch information
zhaocongqi committed Apr 22, 2024
1 parent cd9df5d commit 6820aba
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 @@ -304,11 +304,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 6820aba

Please sign in to comment.