You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like my durable handler and steps to be async
@async_durable_step
async def my_step(step_context, data):
# Your business logic
return result
@async_durable_execution
async def handler(event, context: AsyncDurableContext):
result = await context.step(my_step(event["data"]))
return result
What would you like?
I would like my durable handler and steps to be async
Possible Implementation
No response
Is this a breaking change?
No
Does this require an RFC?
No
Additional Context
No response