Lucas Tieman

Results 5 comments of Lucas Tieman

I have identified more information on the bug and a lot more certain that this is a real bug and not just user error. I pulled the config from the...

I'd propose the following change to the engine._save method ```python async def _save( self, instance: ModelType, session: "AsyncIOMotorClientSession" ) -> ModelType: """Perform an atomic save operation in the specified session"""...

Yeah, this is causing issues for us as well, the weird part is that it seems to periodically work. Has any work been done on this?

it also seems that there are a lot of tickets on nested links not populating that have been closed by the bot even though they have not been completed. on...

@roman-right we did figure out a workaround by overwriting the get_motor_collection method thusly: ```python @classmethod def get_motor_collection(cls) -> AsyncIOMotorCollection: item = super().get_motor_collection() if item is None: from libraries.mongo.mongodb import mongo_singleton...