Skip to content

Commit

Permalink
allow unlimited concurrency
Browse files Browse the repository at this point in the history
Signed-off-by: 夜微澜 <[email protected]>
  • Loading branch information
qiutingjun committed Oct 8, 2023
1 parent 8eb5ee5 commit dfdbd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ovs/ovs-vsctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func init() {
}

func UpdateOVSVsctlLimiter(c int32) {
if c > 0 {
if c >= 0 {
limiter.Update(c)
klog.V(4).Infof("update ovs-vsctl concurrency limit to %d", limiter.Limit())
}
Expand Down

0 comments on commit dfdbd9d

Please sign in to comment.