Skip to content

Commit

Permalink
fix: qos error
Browse files Browse the repository at this point in the history
  • Loading branch information
oilbeater committed Jul 20, 2020
1 parent e460541 commit 3f9d7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/daemon/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (c *Controller) setGatewayBandwidth() error {
}
ingress, egress := node.Annotations[util.IngressRateAnnotation], node.Annotations[util.EgressRateAnnotation]
ifaceId := fmt.Sprintf("node-%s", c.config.NodeName)
return ovs.SetInterfaceBandwidth(ifaceId, ingress, egress)
return ovs.SetInterfaceBandwidth(ifaceId, egress, ingress)
}

func (c *Controller) getLocalPodIPsNeedNAT(protocol string) ([]string, error) {
Expand Down

0 comments on commit 3f9d7c9

Please sign in to comment.