1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

handling error for json encode

Signed-off-by: NoSkillGirl <singhpooja240393@gmail.com>
This commit is contained in:
NoSkillGirl 2021-06-16 10:23:31 +05:30
parent d6920e1acf
commit 9bdf6437eb

View file

@ -216,10 +216,14 @@ func NewWebhookServer(
mux.HandlerFunc("POST", config.VerifyMutatingWebhookServicePath, ws.handlerFunc(ws.verifyHandler, false))
mux.HandlerFunc("GET", config.GetCachePath, func(w http.ResponseWriter, r *http.Request) {
logger := ws.log.WithValues("action", "get cache")
defer r.Body.Close()
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
json.NewEncoder(w).Encode(pCache)
err := json.NewEncoder(w).Encode(pCache)
if err != nil {
logger.Error(err, "error in the JSON encoding")
}
})
// Handle Liveness responds to a Kubernetes Liveness probe