-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(checkoutservice): Intentionally fail on "The Comet Book" item #82
Conversation
err := fmt.Errorf("invalid product #%q", item.GetProductId()) | ||
|
||
hub := sentry.CurrentHub() | ||
hub.Client().CaptureException( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sentry-go currently doesn't have a good support for capturing errors (manually or automatically) in the OTel context. This issue is partially tracked in getsentry/sentry-go#555
@@ -91,6 +91,9 @@ components: | |||
resources: | |||
requests: | |||
cpu: 50m | |||
memory: 400Mi | |||
limits: | |||
memory: 400Mi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're again getting OOMs in frontend
service, so bumping these.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nextjs 😭
For demo purposes: when checking out "The Comet Book", an error should be raised in the checkout service now.
Closes #80