Roman Bondar
Roman Bondar
Hello! Django==1.7.11 django-modeltranslation==0.10.2 When I use `qs.values(...)` for some fields I get KeyError at: https://github.com/deschler/django-modeltranslation/blob/0.10.2/modeltranslation/manager.py#L434 when do `for obj in qs.values(...):`
### Discussed in https://github.com/celery/celery/discussions/7276 Originally posted by **fcovatti** February 3, 2022 I am experiencing an issue with celery==5.2.3 that I did not experience with celery 4.4.7 which I have recently...
Hi, I need to use `CodecOptions(tz_aware=True)` In motor I do this: ```python from bson.codec_options import CodecOptions import motor.motor_asyncio db = motor.motor_asyncio.AsyncIOMotorClient("connection_str")).get_database( "db_name", codec_options=CodecOptions(tz_aware=True), ) ``` In `mongomock_motor` I tried: ```python...
### How do you use Sentry? Self-hosted/on-premise ### Version 2.5.1 ### Steps to Reproduce 1) demo.py ```python import sentry_sdk from sentry_sdk.integrations.arq import ArqIntegration from arq import cron sentry_sdk.init(...) async def...