Skip to content

Commit

Permalink
write manifest when writing run_results
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Sep 29, 2020
1 parent 873d76d commit 998d9fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added state and defer arguments to the RPC client, matching the CLI ([#2678](https:/fishtown-analytics/dbt/issues/2678), [#2736](https:/fishtown-analytics/dbt/pull/2736))
- Added schema and dbt versions to JSON artifacts ([#2670](https:/fishtown-analytics/dbt/issues/2670), [#2767](https:/fishtown-analytics/dbt/pull/2767))
- Added ability to snapshot hard-deleted records (opt-in with `invalidate_hard_deletes` config option). ([#249](https:/fishtown-analytics/dbt/issues/249), [#2749](https:/fishtown-analytics/dbt/pull/2749))
- Save manifest at the same time we save the run_results at the end of a run ([#2765](https:/fishtown-analytics/dbt/issues/2765))

Contributors:
- [@joelluijmes](https:/joelluijmes) ([#2749](https:/fishtown-analytics/dbt/pull/2749))
Expand Down
1 change: 1 addition & 0 deletions core/dbt/task/runnable.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ def run(self):
result = self.execute_with_hooks(selected_uids)

if flags.WRITE_JSON:
self.write_manifest()
self.write_result(result)

self.task_end_messages(result.results)
Expand Down

0 comments on commit 998d9fb

Please sign in to comment.