reserve inventory when order placed
All checks were successful
Build and Publish / Metadata (push) Successful in 10s
Build and Publish / BuildAndDeployAmd64 (push) Successful in 51s
Build and Publish / BuildAndDeployArm64 (push) Successful in 4m45s

This commit is contained in:
matst80
2025-11-11 11:47:05 +01:00
parent 81246fe497
commit 756a43b342
2 changed files with 21 additions and 8 deletions

View File

@@ -147,7 +147,7 @@ func main() {
if amqpUrl == "" {
log.Printf("no connection to amqp defined")
} else {
app.HandleCheckoutRequests(amqpUrl, mux)
app.HandleCheckoutRequests(amqpUrl, mux, inventoryService)
}
grpcSrv, err := actor.NewControlServer[*cart.CartGrain](controlPlaneConfig, pool)