mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-23 10:27:21 +00:00
# Which Problems Are Solved Requests without errors were mapped being mapped to GRPC status code `Unknown`, which were then being mapped as HTTP `500` status code. # How the Problems Are Solved By deriving the grpc status codes from the error only when there's an error. When the error is `nil`, the grpc status code is set to 0 (`OK`). # Additional Changes N/A # Additional Context - Closes #10884