now we should have logs!
All checks were successful
Build and Publish / BuildAndDeployAmd64 (push) Successful in 34s
Build and Publish / BuildAndDeployArm64 (push) Successful in 3m37s

This commit is contained in:
2025-11-26 20:35:39 +01:00
parent beb03a7cd7
commit fac94acfe1

View File

@@ -80,6 +80,10 @@ func (s *PoolServer) AddSkuToCartHandler(w http.ResponseWriter, r *http.Request,
if err != nil { if err != nil {
return err return err
} }
err = s.HandleReservations(r.Context(), id, msg)
if err != nil {
return err
}
data, err := s.ApplyLocal(r.Context(), id, msg) data, err := s.ApplyLocal(r.Context(), id, msg)
if err != nil { if err != nil {
return err return err