-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PipesSubprocess --> PipesSubprocessClient (#16813)
## Summary & Motivation Renaming `PipesSubprocess` to `PipesSubprocessClient` in line with the naming conventions of the other `PipesClient` classes. Flagged prior PR and followed up on here. ## How I Tested These Changes
- Loading branch information
Showing
8 changed files
with
60 additions
and
38 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
examples/experimental/assets_yaml_dsl/assets_yaml_dsl/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from dagster import Definitions | ||
from dagster._core.pipes.subprocess import PipesSubprocess | ||
from dagster._core.pipes.subprocess import PipesSubprocessClient | ||
|
||
from .domain_specific_dsl.stocks_dsl import get_stocks_dsl_example_defs | ||
from .pure_assets_dsl.assets_dsl import get_asset_dsl_example_defs | ||
|
||
defs = Definitions( | ||
assets=get_asset_dsl_example_defs() + get_stocks_dsl_example_defs(), | ||
resources={"subprocess_resource": PipesSubprocess()}, | ||
resources={"pipes_subprocess_client": PipesSubprocessClient()}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters