Changes between Initial Version and Version 1 of Ticket #35245, comment 4


Ignore:
Timestamp:
Feb 23, 2024, 1:44:52 AM (7 months ago)
Author:
willzhao

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35245, comment 4

    initial v1  
    44items_lists = await asyncio.gather(MyModel.objects.afirst())  # blocked
    55items_lists = await asyncio.gather(MyModel.objects.acreate())  # blocked
     6items_lists = await MyModel.objects.afirst()  # works
     7items_lists = await MyModel.objects.acreate()  # works
    68items_lists = await MyProvider().get()  # works
    79}}}
Back to Top