Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dbt_core_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,7 @@ def safe_parse_project(self) -> None:
manifest = Manifest.from_writable_manifest(writable_manifest)
self.dbt.merge_from_artifact(
other=manifest,
favor_state=self.favor_state,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Signature of this function from dbt is:

 # Called in GraphRunnableTask.before_run, RunTask.before_run, CloneTask.before_run
    def merge_from_artifact(self, other: "Manifest") -> None:

)
else:
with open(self.defer_to_prod_manifest_path) as f:
Expand Down
Loading