Skip to content

Commit 7678fc0

Browse files
committed
Fix string xcom (should be a list)
1 parent 39533f1 commit 7678fc0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

containers/airflow/dags/brasil/sinan.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ def extract_parquets(**kwargs) -> dict:
155155
)
156156

157157
return dict(
158-
pqs_to_insert=extract_pqs('to_insert'),
159-
pqs_to_finals=extract_pqs('to_finals'),
160-
pqs_to_update=extract_pqs('to_update'),
158+
pqs_to_insert=list(extract_pqs('to_insert')),
159+
pqs_to_finals=list(extract_pqs('to_finals')),
160+
pqs_to_update=list(extract_pqs('to_update')),
161161
)
162162

163163
@task(task_id='first_insertion', trigger_rule='all_done')

0 commit comments

Comments
 (0)