From abbef758b84eea4ae6378292e1c84b250def7798 Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Thu, 12 Sep 2024 12:19:15 -0400 Subject: [PATCH] Try skipping _add_config_call entirely --- core/dbt/context/context_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/dbt/context/context_config.py b/core/dbt/context/context_config.py index 51222ceba10..2ddf89b2da6 100644 --- a/core/dbt/context/context_config.py +++ b/core/dbt/context/context_config.py @@ -293,7 +293,8 @@ def __init__( def add_config_call(self, opts: Dict[str, Any]) -> None: dct = self._config_call_dict - self._add_config_call(dct, opts) + # Try skipping _add_config_call entirely + self._config_call_dict = opts @classmethod def _add_config_call(cls, config_call_dict, opts: Dict[str, Any]) -> None: