Skip to content

Commit

Permalink
Adding status codes to run doc
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewshaver committed Dec 4, 2024
1 parent 3a7f811 commit 0db82ca
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion website/docs/reference/commands/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,15 @@ See [global configs](/reference/global-configs/print-output#print-color)

The `run` command supports the `--empty` flag for building schema-only dry runs. The `--empty` flag limits the refs and sources to zero rows. dbt will still execute the model SQL against the target data warehouse but will avoid expensive reads of input data. This validates dependencies and ensures your models will build properly.

</VersionBlock>
</VersionBlock>

## Status codes

When calling the [list_runs api](/dbt-cloud/api-v2#/operations/List%20Runs), you will get a status code for each run returned. The available run status codes are as follows:

Check warning on line 90 in website/docs/reference/commands/run.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/commands/run.md#L90

[custom.Typos] Oops there's a typo -- did you really mean 'list_runs'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'list_runs'? ", "location": {"path": "website/docs/reference/commands/run.md", "range": {"start": {"line": 90, "column": 19}}}, "severity": "WARNING"}

- Starting = 1
- Running = 3
- Success = 10
- Error = 20
- Canceled = 30
- Skipped = 40

0 comments on commit 0db82ca

Please sign in to comment.