bajs
Some checks failed
Build and Publish / BuildAndDeployAmd64 (push) Successful in 42s
Build and Publish / BuildAndDeployArm64 (push) Has been cancelled

This commit is contained in:
2025-12-03 19:01:57 +01:00
parent 9fde6d6bd7
commit c57643ab63
3 changed files with 34 additions and 1 deletions

View File

@@ -197,7 +197,7 @@ func (s *CheckoutPoolServer) StartCheckoutHandler(w http.ResponseWriter, r *http
cartGrain, err := s.cartClient.getCartGrain(r.Context(), cartId)
if err != nil {
logger.Error("failed to fetch cart", "error", err, "cartId", cartId)
http.Error(w, "failed to fetch cart", http.StatusInternalServerError)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}