Autoenabled StrawberryIntegration cost me an hour of downtime - maybe reconsider this behavior? #4976
ipeterov
started this conversation in
Features / New Integrations / Ideas
Replies: 1 comment
-
Hey @ipeterov, thanks for reporting, I made an issue out of this #4980 -- we'll take a look. 🙏🏻 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
sentry_sdk.init(
call which didn't have any integrations)There is no current event loop in thread 'ThreadPoolExecutor-28_0'.
exceptions on every request to my APITurns out, Sentry somehow detected that I was using Strawberry, but didn't realize I was using
GraphQLView
and notAsyncGraphQLView
. I'm assuming it started running async code, and that broke because it was doing it in a sync context.I got really confused - even launching the production Docker image locally was completely fine. I just started adding the same build args, and it broke when I added
SENTRY_DSN
. Then, I found this issue in the Strawberry repo. Turns out, I'm not the first one.Beta Was this translation helpful? Give feedback.
All reactions