Skip to content

Commit

Permalink
update airflow variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cayod committed Oct 24, 2023
1 parent b230602 commit e4aedbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions airflow_variables_dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"config_settings": "config_settings.txt",
"expiration": "expiration.txt",
"diagnostic_events": "diagnostic_events.txt",
"ledger_transactions": "ledger_transactions.txt"
"ledger_transaction": "ledger_transaction.txt"
},
"output_path": "/home/airflow/gcs/data/",
"owner": "SDF",
Expand Down Expand Up @@ -278,7 +278,7 @@
"config_settings": "config_settings",
"expiration": "expiration",
"diagnostic_events": "diagnostic_events",
"ledger_transactions": "ledger_transactions"
"ledger_transaction": "ledger_transaction"
},
"task_timeout": {
"build_batch_stats": 180,
Expand Down
6 changes: 3 additions & 3 deletions dags/history_ledger_transaction_with_captive_core_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
record is written to an internal dataset for data eng use only.
"""

write_lt_stats = build_batch_stats(dag, table_names["ledger_transactions"])
write_lt_stats = build_batch_stats(dag, table_names["ledger_transaction"])

"""
The export tasks call export commands on the Stellar ETL using the ledger range from the time task.
Expand All @@ -71,8 +71,8 @@
lt_export_task = build_export_task(
dag,
"archive",
"export_ledger_transactions",
file_names["ledger_transactions"],
"export_ledger_transaction",
file_names["ledger_transaction"],
use_testnet=use_testnet,
use_gcs=True,
resource_cfg="cc",
Expand Down

0 comments on commit e4aedbc

Please sign in to comment.