Skip to content

Commit

Permalink
default to string
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbalcaen committed Apr 19, 2024
1 parent c0877cb commit 8a2e646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambdas/step_function_invoker/src/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def lambda_handler(event, context):
try:
state_machine_execution_result = step_functions_client.start_execution(
stateMachineArn=STATE_MACHINE_ARN,
input=json.dumps(event),
input=json.dumps(event, default=str),
)

logger.info(state_machine_execution_result)
Expand Down

0 comments on commit 8a2e646

Please sign in to comment.