Skip to content

Commit

Permalink
Fix callable
Browse files Browse the repository at this point in the history
  • Loading branch information
ividito committed Dec 3, 2024
1 parent 3a48975 commit 0e5cc7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/veda_data_pipeline/veda_dataset_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def mutate_payload(**kwargs):

collection_grp = collection_task_group()
mutate_payload_task = mutate_payload()
discover = discover_from_s3_task.partial(alt_payload=mutate_payload_task()).expand(event=extract_discovery_items())
discover = discover_from_s3_task.partial(alt_payload=mutate_payload_task).expand(event=extract_discovery_items())
discover.set_upstream(collection_grp) # do not discover until collection exists
get_files = get_dataset_files_to_process(payload=discover)

Expand Down

0 comments on commit 0e5cc7c

Please sign in to comment.