Skip to content

Commit

Permalink
Merge pull request kubernetes#81572 from ernado/kube-proxy-fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
k8s-ci-robot authored Aug 19, 2019
2 parents 091a5dc + 2390e24 commit ff22d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/kube-proxy/app/server_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ func tryWinKernelSpaceProxy(kcompat winkernel.KernelCompatTester) string {
// Check for Windows Version

// guaranteed false on error, error only necessary for debugging
useWinKerelProxy, err := winkernel.CanUseWinKernelProxier(kcompat)
useWinKernelProxy, err := winkernel.CanUseWinKernelProxier(kcompat)
if err != nil {
klog.Errorf("Can't determine whether to use windows kernel proxy, using userspace proxier: %v", err)
return proxyModeUserspace
}
if useWinKerelProxy {
if useWinKernelProxy {
return proxyModeKernelspace
}
// Fallback.
Expand Down

0 comments on commit ff22d82

Please sign in to comment.