Skip to content

Commit

Permalink
int
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Apr 19, 2024
1 parent 3d0c44f commit e36e330
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dags/stellar_etl_airflow/test_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ def get_from_combinedExport(**context):
)

BQ_results = {
"operations": [row[0] for row in query_job.result()],
"trades": [row[0] for row in query_job2.result()],
"effects": [row[0] for row in query_job3.result()],
"transactions": [row[0] for row in query_job4.result()],
"operations": int(row[0] for row in query_job.result()),
"trades": int(row[0] for row in query_job2.result()),
"effects": int(row[0] for row in query_job3.result()),
"transactions": int(row[0] for row in query_job4.result()),
}

context["ti"].xcom_push(key="from BQ", value=BQ_results)
Expand Down

0 comments on commit e36e330

Please sign in to comment.