Skip to content

Commit

Permalink
[refactor] pipeline_run_from_storage -> dagster_run_from_storage (#12386
Browse files Browse the repository at this point in the history
)

### Summary & Motivation

Rename `pipeline_run_from_storage` -> `dagster_run_from_storage`

### How I Tested These Changes

BK
  • Loading branch information
smackesey committed Feb 17, 2023
1 parent 5eeab19 commit 4ba803c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python_modules/dagster/dagster/_core/storage/pipeline_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def value_from_storage_dict(
for key, value in storage_dict.items()
}
# called by the serdes layer, delegates to helper method with expanded kwargs
return pipeline_run_from_storage(**unpacked_dict)
return dagster_run_from_storage(**unpacked_dict)

@classmethod
def value_to_storage_dict(
Expand All @@ -205,7 +205,7 @@ def value_to_storage_dict(
return storage


def pipeline_run_from_storage(
def dagster_run_from_storage(
pipeline_name=None,
run_id=None,
run_config=None,
Expand Down

0 comments on commit 4ba803c

Please sign in to comment.