From c292003fb04836d7164e5bc5a95febe891dbf359 Mon Sep 17 00:00:00 2001 From: Austin <93135983+austinFlipside@users.noreply.github.com> Date: Tue, 21 Feb 2023 19:01:52 -0500 Subject: [PATCH] fix vars (#108) --- .github/workflows/dbt_run_streamline_receipts_history.yml | 2 +- .github/workflows/dbt_run_streamline_traces_history.yml | 2 +- .../workflows/dbt_run_streamline_traces_receipts_realtime.yml | 2 +- .github/workflows/dbt_run_streamline_tx_blocks.yml | 2 +- dbt_project.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dbt_run_streamline_receipts_history.yml b/.github/workflows/dbt_run_streamline_receipts_history.yml index f5a9e1b..9d78498 100644 --- a/.github/workflows/dbt_run_streamline_receipts_history.yml +++ b/.github/workflows/dbt_run_streamline_receipts_history.yml @@ -40,4 +40,4 @@ jobs: dbt deps - name: Run DBT Jobs run: | - dbt run -m 1+models/silver/streamline/streamline__eth_getBlockReceipts_history.sql + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m 1+models/silver/streamline/streamline__eth_getBlockReceipts_history.sql diff --git a/.github/workflows/dbt_run_streamline_traces_history.yml b/.github/workflows/dbt_run_streamline_traces_history.yml index 04f6744..16ac5c7 100644 --- a/.github/workflows/dbt_run_streamline_traces_history.yml +++ b/.github/workflows/dbt_run_streamline_traces_history.yml @@ -40,4 +40,4 @@ jobs: dbt deps - name: Run DBT Jobs run: | - dbt run -m 1+models/silver/streamline/streamline__trace_blocks_history.sql + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m 1+models/silver/streamline/streamline__trace_blocks_history.sql diff --git a/.github/workflows/dbt_run_streamline_traces_receipts_realtime.yml b/.github/workflows/dbt_run_streamline_traces_receipts_realtime.yml index 52be5fa..9d047e1 100644 --- a/.github/workflows/dbt_run_streamline_traces_receipts_realtime.yml +++ b/.github/workflows/dbt_run_streamline_traces_receipts_realtime.yml @@ -41,4 +41,4 @@ jobs: dbt deps - name: Run DBT Jobs run: | - dbt run -m 1+models/silver/streamline/streamline__trace_blocks_realtime.sql 1+models/silver/streamline/streamline__eth_getBlockReceipts_realtime.sql + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m 1+models/silver/streamline/streamline__trace_blocks_realtime.sql 1+models/silver/streamline/streamline__eth_getBlockReceipts_realtime.sql diff --git a/.github/workflows/dbt_run_streamline_tx_blocks.yml b/.github/workflows/dbt_run_streamline_tx_blocks.yml index f93ba12..0e178c2 100644 --- a/.github/workflows/dbt_run_streamline_tx_blocks.yml +++ b/.github/workflows/dbt_run_streamline_tx_blocks.yml @@ -41,4 +41,4 @@ jobs: dbt deps - name: Run DBT Jobs run: | - dbt run -m 1+models/silver/streamline/streamline__blocks_realtime.sql 1+models/silver/streamline/streamline__transactions_realtime.sql \ No newline at end of file + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m 1+models/silver/streamline/streamline__blocks_realtime.sql 1+models/silver/streamline/streamline__transactions_realtime.sql \ No newline at end of file diff --git a/dbt_project.yml b/dbt_project.yml index 7913c8a..a6abc0e 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -43,7 +43,7 @@ on-run-end: # using the `{{ config(...) }}` macro. vars: - STREAMLINE_INVOKE_STREAMS: True + STREAMLINE_INVOKE_STREAMS: False "dbt_date:time_zone": GMT UPDATE_UDFS_AND_SPS: False UPDATE_SNOWFLAKE_TAGS: True \ No newline at end of file