From 0696e54378b47ec29019bf36a15e0349a0299fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Tue, 1 Nov 2022 13:51:20 +0000 Subject: [PATCH] fix: content type in log (#5177) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- pkg/webhooks/handlers/admission.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/webhooks/handlers/admission.go b/pkg/webhooks/handlers/admission.go index 0a8ba4508d..eded679cbe 100644 --- a/pkg/webhooks/handlers/admission.go +++ b/pkg/webhooks/handlers/admission.go @@ -35,7 +35,7 @@ func Admission(logger logr.Logger, inner AdmissionHandler) http.HandlerFunc { } contentType := request.Header.Get("Content-Type") if contentType != "application/json" { - logger.Info("invalid Content-Type", "contextType", contentType) + logger.Info("invalid Content-Type", "contentType", contentType) http.Error(writer, "invalid Content-Type, expect `application/json`", http.StatusUnsupportedMediaType) return }