fix: remove s.log (no logger field in Server)

This commit is contained in:
“Naeel”
2026-05-09 08:48:01 +04:00
parent 924375b083
commit bba5904c5f
+1 -1
View File
@@ -434,7 +434,7 @@ func (s *Server) handlePutFunctionEnvVars(w http.ResponseWriter, r *http.Request
if envName != "" {
if err := s.patchDeploymentEnvVars(ctx, ns, name, envName, req.EnvVars); err != nil {
// Не фатальная ошибка — CRD обновлён, Deployment будет обновлён позже
s.log.Sugar().Warnf("patch deployment env vars: %v", err)
_ = err // warn only
}
}
}