Skip to content

Commit

Permalink
Add package name to run_limits printing
Browse files Browse the repository at this point in the history
  • Loading branch information
emielver committed Oct 26, 2023
1 parent b3a9e8a commit 85c339a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions models/base/scratch/snowplow_mobile_base_new_event_limits.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ config(
post_hook=["{{snowplow_utils.print_run_limits(this)}}"],
post_hook=["{{snowplow_utils.print_run_limits(this, 'snowplow_mobile')}}"],
sql_header=snowplow_utils.set_query_tag(var('snowplow__query_tag', 'snowplow_dbt'))
)
}}
Expand All @@ -8,13 +8,13 @@
{%- set models_in_run = snowplow_utils.get_enabled_snowplow_models('snowplow_mobile') -%}

{% set min_last_success,
max_last_success,
max_last_success,
models_matched_from_manifest,
has_matched_all_models = snowplow_utils.get_incremental_manifest_status(ref('snowplow_mobile_incremental_manifest'),
models_in_run) -%}


{% set run_limits_query = snowplow_utils.get_run_limits(min_last_success,
{% set run_limits_query = snowplow_utils.get_run_limits(min_last_success,
max_last_success,
models_matched_from_manifest,
has_matched_all_models,
Expand Down

0 comments on commit 85c339a

Please sign in to comment.