From 7b02c95173bfe846531b9658eeab63d22906cec0 Mon Sep 17 00:00:00 2001 From: Harshad Reddy Nalla Date: Fri, 21 Jun 2024 04:28:00 -0400 Subject: [PATCH] Set the run_url with experiment info included (#20) Signed-off-by: Harshad Reddy Nalla --- elyra/pipeline/kfp/processor_kfp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elyra/pipeline/kfp/processor_kfp.py b/elyra/pipeline/kfp/processor_kfp.py index 205e20b8f..12da06736 100644 --- a/elyra/pipeline/kfp/processor_kfp.py +++ b/elyra/pipeline/kfp/processor_kfp.py @@ -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, ) @@ -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, )