Expected Behavior
Map step should finish when a emptylist is given
Actual Behavior
Function stops executing and times out after a while.
Steps to Reproduce
Deploy durable function with following code
from aws_durable_execution_sdk_python import (
durable_execution,
DurableContext,
durable_step,
)
@durable_execution
def lambda_handler(event, context: DurableContext):
items = []
_ = context.map(
items,
map_items,
name="ProcessItems",
)
def map_items(
context: DurableContext,
item,
index,
items,
) -> str:
context.logger.info(
f"Processing item {item}"
)
return "OK"
SDK Version
1.3.0
Python Version
3.14
Is this a regression?
No
Last Working Version
No response
Additional Context
No response
Expected Behavior
Map step should finish when a emptylist is given
Actual Behavior
Function stops executing and times out after a while.
Steps to Reproduce
Deploy durable function with following code
SDK Version
1.3.0
Python Version
3.14
Is this a regression?
No
Last Working Version
No response
Additional Context
No response