Skip to content

Commit 4dce4b7

Browse files
authored
fix typo (#579)
1 parent 87718c9 commit 4dce4b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controllers/proxy/network_services_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ func ensureIpvsConnReuseMode() error {
14191419
glog.Errorf("skipping setting net.ipv4.vs.conn_reuse_mode=0, error stating: %s : %s", sysctlPath, err.Error())
14201420
return nil
14211421
}
1422-
return ioutil.WriteFile("sysctlPath", []byte(strconv.Itoa(0)), 0640)
1422+
return ioutil.WriteFile(sysctlPath, []byte(strconv.Itoa(0)), 0640)
14231423
}
14241424

14251425
func ensureIpvsExpireNodestConn() error {

0 commit comments

Comments
 (0)