Skip to content

Commit

Permalink
fix: make sure PipelineRuntimeConfigBuilder is created with the right…
Browse files Browse the repository at this point in the history
… arguments

PiperOrigin-RevId: 577347782
  • Loading branch information
vertex-sdk-bot authored and copybara-github committed Oct 28, 2023
1 parent 41bfcb6 commit ad19838
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions google/cloud/aiplatform/utils/pipeline_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ def from_job_spec_json(
parameter_values = _parse_runtime_parameters(runtime_config_spec)
failure_policy = runtime_config_spec.get("failurePolicy")
return cls(
pipeline_root,
schema_version,
parameter_types,
parameter_values,
failure_policy,
pipeline_root=pipeline_root,
schema_version=schema_version,
parameter_types=parameter_types,
parameter_values=parameter_values,
failure_policy=failure_policy,
)

def update_pipeline_root(self, pipeline_root: Optional[str]) -> None:
Expand Down

0 comments on commit ad19838

Please sign in to comment.