(coll)
| 76 | @async_client_context.require_failCommand_fail_point |
| 77 | async def test_cursor_gc(self): |
| 78 | async def create_resource(coll): |
| 79 | cursor = coll.find({}, batch_size=3) |
| 80 | await anext(cursor) |
| 81 | return cursor |
| 82 | |
| 83 | await self._test_no_gc_deadlock(create_resource) |
| 84 |