Changes between Initial Version and Version 7 of Ticket #33882


Ignore:
Timestamp:
Aug 2, 2022, 9:56:49 AM (21 months ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33882

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Keywords async added
    • Property Triage Stage UnreviewedAccepted
    • Property Summary async transaction.atomicAllow transaction.atomic to work in async contexts.
  • Ticket #33882 – Description

    initial v7  
    11Wouldn't it be possible to add something like:
    2 
     2{{{ #!python
    33    __aenter__ = sync_to_async(Atomic.__enter__, thread_sensitive=True)
    44    __aexit__ = sync_to_async(Atomic.__exit__, thread_sensitive=True)
    5 
     5}}}
    66to the Atomic class to support async calls?
Back to Top