From 846aaa8929f85747bd6a29f89c812f60e3c7a318 Mon Sep 17 00:00:00 2001 From: Bart Schuijt Date: Tue, 25 Jun 2024 17:10:34 +0200 Subject: [PATCH 1/2] Update warnings.md --- website/docs/reference/global-configs/warnings.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/reference/global-configs/warnings.md b/website/docs/reference/global-configs/warnings.md index 0cb4add5f0d..1aee2623f26 100644 --- a/website/docs/reference/global-configs/warnings.md +++ b/website/docs/reference/global-configs/warnings.md @@ -82,6 +82,7 @@ DBT_WARN_ERROR_OPTIONS='{"include": ["NoNodesForSelectionCriteria"]}' dbt run ... ``` +Values for `error`, `warn`, and/or `silence` should be passed on as arrays. E.g. `dbt --warn-error-options '{"error": "all", "warn": ["NoNodesForSelectionCriteria"]}' run` not `dbt --warn-error-options '{"error": "all", "warn": "NoNodesForSelectionCriteria"}' run`. From c30547947b73c2afed6459e11b6f1f9aa8b9d134 Mon Sep 17 00:00:00 2001 From: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> Date: Tue, 6 Aug 2024 17:14:05 -0400 Subject: [PATCH 2/2] Update website/docs/reference/global-configs/warnings.md --- website/docs/reference/global-configs/warnings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/global-configs/warnings.md b/website/docs/reference/global-configs/warnings.md index 1aee2623f26..97eb270338e 100644 --- a/website/docs/reference/global-configs/warnings.md +++ b/website/docs/reference/global-configs/warnings.md @@ -82,7 +82,7 @@ DBT_WARN_ERROR_OPTIONS='{"include": ["NoNodesForSelectionCriteria"]}' dbt run ... ``` -Values for `error`, `warn`, and/or `silence` should be passed on as arrays. E.g. `dbt --warn-error-options '{"error": "all", "warn": ["NoNodesForSelectionCriteria"]}' run` not `dbt --warn-error-options '{"error": "all", "warn": "NoNodesForSelectionCriteria"}' run`. +Values for `error`, `warn`, and/or `silence` should be passed on as arrays. For example, `dbt --warn-error-options '{"error": "all", "warn": ["NoNodesForSelectionCriteria"]}' run` not `dbt --warn-error-options '{"error": "all", "warn": "NoNodesForSelectionCriteria"}' run`.