Skip to content

Commit

Permalink
swap json merge parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed Apr 13, 2024
1 parent b71f778 commit 2f916a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aibs_informatics_cdk_lib/stacks/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def create_step_functions(self, file_system: Optional[efs.FileSystem] = None):
"Merge",
parameters={
"request": sfn.JsonPath.json_merge(
sfn.JsonPath.object_at("$.input"), sfn.JsonPath.object_at("$.default")
sfn.JsonPath.object_at("$.default"), sfn.JsonPath.object_at("$.input")
),
},
)
Expand Down

0 comments on commit 2f916a3

Please sign in to comment.