diff options
Diffstat (limited to 'plugin/kubernetes/apiproxy.go')
-rw-r--r-- | plugin/kubernetes/apiproxy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/kubernetes/apiproxy.go b/plugin/kubernetes/apiproxy.go index 59a569885..097600096 100644 --- a/plugin/kubernetes/apiproxy.go +++ b/plugin/kubernetes/apiproxy.go @@ -33,7 +33,7 @@ func (p *proxyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { } hj, ok := w.(http.Hijacker) if !ok { - log.Printf("[ERROR] Unable to establish connection: no hijacker") + log.Print("[ERROR] Unable to establish connection: no hijacker") http.Error(w, "Unable to establish connection: no hijacker", 500) return } |