update to var limit

This commit is contained in:
mattromano 2025-04-01 09:44:01 -07:00
parent e92371e747
commit bcabefb5d6
2 changed files with 2 additions and 2 deletions

View File

@ -44,5 +44,5 @@ jobs:
dbt deps
- name: Run DBT Jobs
run: |
dbt run --threads 1 -m silver__fact_traces2
dbt run --select silver__fact_traces2

View File

@ -341,7 +341,7 @@ heal_missing_data AS (
(t.tx_hash IS NULL
OR t.block_timestamp IS NULL
OR t.tx_status IS NULL)
LIMIT 1000000000
LIMIT {{ var('HEAL_LIMIT', 1000000000) }}
)
{% endif %},