Skip to content

Commit

Permalink
Try skipping _add_config_call entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Sep 12, 2024
1 parent ab500a9 commit abbef75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/dbt/context/context_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit abbef75

Please sign in to comment.