Skip to content

Commit

Permalink
Fix JSON Path in ItemReader Configuration (#1822)
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhinnru authored May 3, 2024
1 parent 302f057 commit 4292ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/aws/step_functions/step_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def _visit(node, workflow, exit_node=None):
JSONItemReader()
.resource("arn:aws:states:::s3:getObject")
.parameter("Bucket.$", "$.Body.DestinationBucket")
.parameter("Key.$", "$.Body.ResultFiles.SUCCEEDED.[0].Key")
.parameter("Key.$", "$.Body.ResultFiles.SUCCEEDED[0].Key")
)
.output_path("$.[0]")
)
Expand Down

0 comments on commit 4292ade

Please sign in to comment.