Skip to content

Commit

Permalink
Add missing code hash filter in client method (#3094)
Browse files Browse the repository at this point in the history
  • Loading branch information
schustmi authored Oct 21, 2024
1 parent 62305dc commit e5c8b22
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/zenml/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3909,6 +3909,7 @@ def list_run_steps(
updated: Optional[Union[datetime, str]] = None,
name: Optional[str] = None,
cache_key: Optional[str] = None,
code_hash: Optional[str] = None,
status: Optional[str] = None,
start_time: Optional[Union[datetime, str]] = None,
end_time: Optional[Union[datetime, str]] = None,
Expand Down Expand Up @@ -3940,7 +3941,8 @@ def list_run_steps(
original_step_run_id: The id of the original step run to filter by.
model_version_id: The ID of the model version to filter by.
name: The name of the step run to filter by.
cache_key: The cache_key of the run to filter by.
cache_key: The cache key of the step run to filter by.
code_hash: The code hash of the step run to filter by.
status: The name of the run to filter by.
num_outputs: The number of outputs for the step run
hydrate: Flag deciding whether to hydrate the output model(s)
Expand All @@ -3956,6 +3958,7 @@ def list_run_steps(
logical_operator=logical_operator,
id=id,
cache_key=cache_key,
code_hash=code_hash,
pipeline_run_id=pipeline_run_id,
deployment_id=deployment_id,
original_step_run_id=original_step_run_id,
Expand Down

0 comments on commit e5c8b22

Please sign in to comment.