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:
parent
d6920e1acf
commit
9bdf6437eb
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue