()
| 124 | execution_order = [] |
| 125 | |
| 126 | async def task1(): |
| 127 | async with manager.acquire_lock(session_id): |
| 128 | execution_order.append("task1-start") |
| 129 | await asyncio.sleep(0.1) |
| 130 | execution_order.append("task1-end") |
| 131 | |
| 132 | async def task2(): |
| 133 | await asyncio.sleep(0.01) # Let task1 start first |
nothing calls this directly
no test coverage detected