Skip to content

Commit

Permalink
Set the run_url with experiment info included (#20)
Browse files Browse the repository at this point in the history
Signed-off-by: Harshad Reddy Nalla <hnalla@redhat.com>
  • Loading branch information
harshad16 authored Jun 21, 2024
1 parent 7bbf790 commit 71570d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elyra/pipeline/kfp/processor_kfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def process(self, pipeline):

self.log_pipeline_info(
pipeline_name,
f"pipeline submitted: {public_api_endpoint}/{run.run_id}",
f"pipeline submitted: {public_api_endpoint}/{experiment.experiment_id}/runs/{run.run_id}",
duration=time.time() - t0,
)

Expand All @@ -437,7 +437,7 @@ def process(self, pipeline):

return KfpPipelineProcessorResponse(
run_id=run.run_id,
run_url=f"{public_api_endpoint}/{run.run_id}",
run_url=f"{public_api_endpoint}/{experiment.experiment_id}/runs/{run.run_id}",
object_storage_url=object_storage_url,
object_storage_path=object_storage_path,
)
Expand Down

0 comments on commit 71570d3

Please sign in to comment.