Skip to content

Commit

Permalink
Revert changes on run_url
Browse files Browse the repository at this point in the history
Signed-off-by: Guilherme Caponetto <[email protected]>
  • Loading branch information
caponetto committed Jan 28, 2025
1 parent aff4587 commit 13d1345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elyra/pipeline/kfp/kfp_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def process(self, pipeline):

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

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

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

0 comments on commit 13d1345

Please sign in to comment.