Changes between Initial Version and Version 1 of Ticket #33882, comment 18
- Timestamp:
- Sep 1, 2024, 2:29:19 PM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33882, comment 18
initial v1 5 5 {{{ 6 6 async def post(): 7 await sync_to_async(_post_sync_transaction) 7 await sync_to_async(_post_sync_transaction) # <-- Messy but maybe acceptable 8 8 9 9 … … 11 11 def _post_sync_transaction(): 12 12 logic1() 13 async_to_sync(alogic2) # <-- Messy maintaining14 async_to_sync(alogic3) # <-- Messy maintaining13 async_to_sync(alogic2) # <-- Very messy, not acceptable 14 async_to_sync(alogic3) # <-- Very messy, not acceptable 15 15 16 16