From 1dfea5af60ed1d344a8ba8153fc02d5db1a871d6 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 8 May 2023 14:25:25 -0400 Subject: [PATCH] Do not rewrite manifest.json during 'docs serve' command --- .changes/unreleased/Fixes-20230508-142518.yaml | 6 ++++++ core/dbt/cli/main.py | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changes/unreleased/Fixes-20230508-142518.yaml diff --git a/.changes/unreleased/Fixes-20230508-142518.yaml b/.changes/unreleased/Fixes-20230508-142518.yaml new file mode 100644 index 00000000000..8b14ea53dae --- /dev/null +++ b/.changes/unreleased/Fixes-20230508-142518.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Do not rewrite manifest.json during 'docs serve' command +time: 2023-05-08T14:25:18.376379-04:00 +custom: + Author: jtcohen6 + Issue: "7553" diff --git a/core/dbt/cli/main.py b/core/dbt/cli/main.py index 676bc23f04c..11595c472fe 100644 --- a/core/dbt/cli/main.py +++ b/core/dbt/cli/main.py @@ -290,13 +290,11 @@ def docs_generate(ctx, **kwargs): @requires.profile @requires.project @requires.runtime_config -@requires.manifest def docs_serve(ctx, **kwargs): """Serve the documentation website for your project""" task = ServeTask( ctx.obj["flags"], ctx.obj["runtime_config"], - ctx.obj["manifest"], ) results = task.run()