Skip to content

Commit

Permalink
fix typos (#8090)
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenKephart committed May 27, 2022
1 parent c7427a0 commit 67ca747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* [dagit] In the left navigation, when a job has more than one schedule or sensor, clicking the schedule/sensor icon will now display a dialog containing the full list of schedules and sensors for that job.
* [dagit] Assets on the runs page are now shown in more scenarios.
* [dagster-dbt] dbt assets now support subsetting! In dagit, you can launch off a dbt command which will only refresh the selected models, and when you’re building jobs using `AssetGroup.build_job()`, you can define selections which select subsets of the loaded dbt project.
* [dagster-dbt] [experimental] The `load_assets_from_manifest_json` function now supports an experimental `select` parameter. This allows you to use dbt selection syntax to select from an existing manifest.json file, rather than having Dagster re-compile the project on demand.
* [dagster-dbt] [experimental] The `load_assets_from_dbt_manifest` function now supports an experimental `select` parameter. This allows you to use dbt selection syntax to select from an existing manifest.json file, rather than having Dagster re-compile the project on demand.
* For software-defined assets, `OpExecutionContext` now exposes an `asset_key_for_output` method, which returns the asset key that one of the op’s outputs corresponds too.
* The Backfills tab in Dagit loads much faster when there have been backfills that produced large numbers of runs.
* Added the ability to run the Dagster Daemon as a Python module, by running `python -m dagster.daemon`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _select_unique_ids_from_manifest_json(
from networkx import DiGraph
except ImportError:
check.failed(
"In order to use the `select` argument on load_assets_from_manifest_json, you must have"
"In order to use the `select` argument on load_assets_from_dbt_manifest, you must have"
"`dbt-core >= 1.0.0` and `networkx` installed."
)

Expand Down

1 comment on commit 67ca747

@vercel
Copy link

@vercel vercel bot commented on 67ca747 May 27, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.