From d3ceead883dcc5f1489dddfc519ce414d12c345b Mon Sep 17 00:00:00 2001 From: Roman Mitasov Date: Fri, 12 Jun 2026 16:19:06 +0300 Subject: [PATCH] fix(silver): add zulip_proxy depends_on to shared identity_inputs The shared identity_inputs union lists explicit depends_on hints for all models tagged silver:identity_inputs, but zulip_proxy__identity_inputs was missing. Without the hint, dbt may build the union before the zulip staging model on a first run, and union_by_tag silently skips the not-yet-materialised table. Co-Authored-By: Claude Fable 5 Signed-off-by: Roman Mitasov --- src/ingestion/silver/_shared/identity_inputs.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ingestion/silver/_shared/identity_inputs.sql b/src/ingestion/silver/_shared/identity_inputs.sql index 2d92a1cf3..38eebec28 100644 --- a/src/ingestion/silver/_shared/identity_inputs.sql +++ b/src/ingestion/silver/_shared/identity_inputs.sql @@ -13,6 +13,7 @@ -- depends_on: {{ ref('bamboohr__identity_inputs') }} -- depends_on: {{ ref('zoom__identity_inputs') }} -- depends_on: {{ ref('ms_entra__identity_inputs') }} +-- depends_on: {{ ref('zulip_proxy__identity_inputs') }} -- depends_on: {{ ref('seed_identity_inputs_from_cursor') }} -- depends_on: {{ ref('seed_identity_inputs_from_claude_admin') }}