Anton Pirker
Anton Pirker
Hey @cameron-simpson thanks for all the additional information! As this is for quite old Django versions, it is not on top of our priority list. But if anyone else is...
Hey @ThirVondukr ! Thanks for bringing this up. Yes, our async Python support needs some improvements. I put this on our backlog, but we are quite swamped right now, so...
Probably! If you submit a PR, I am happy to review!
I have put this on the internal backlog with low priority. We will do road map planning in the next couple of weeks, where we decide what we will tackle....
I think we do not need to enforce it, but just add initial doc strings to all important functions, and then in the future engineers see that we have a...
Hey @jensenbox ! Thanks for reporting this. I guess I never tested it on ECS. But it seams like a not-so-big fix. (regardless the request should not freece in the...
Yes, we could run our test suite against nogil Python. Here are also some more information that are helpful: https://drew.silcock.dev/blog/everything-you-need-to-know-about-python-3-13/
A quick question @dPeS does ray with asyncion call `asyncio.run()` multiple times?
Because having multiple event loops is not recommended (because after the first event loop is closed it could happen, that not everything is cleaned up and data is leaked to...
Some of our integrations call `span.__enter__()` and `span.__exit__()` manually, because a context manager would not work: https://github.com/getsentry/sentry-python/blob/antonpirker/potel/sampler/sentry_sdk/integrations/anthropic.py#L100 Maybe we should make this an official api? Like: ```python span = start_span(...)...