Skip to content

Commit

Permalink
return_value
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Apr 17, 2024
1 parent 9b85b70 commit 65def37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/stellar_etl_airflow/test_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def compare_transforms_and_bq_rows():
for dag_run in execution_dates:
# Retrieve successful_transforms from XCOM
ti = TaskInstance(task, dag_run.execution_date)
xcom_ledgers = ti.xcom_pull(task_ids=task)
xcom_ledgers = ti.xcom_pull(task_ids=task, key="return_value")

# Parse JSON and get successful_transforms
successful_transforms_ledgers = json.loads(xcom_ledgers)[
Expand Down

0 comments on commit 65def37

Please sign in to comment.