Skip to content

Commit

Permalink
fix: Change scheduled pipelines client dashboard uri to view created …
Browse files Browse the repository at this point in the history
…schedules. Note: uri will not work until scheduler UI is GA.

PiperOrigin-RevId: 540369950
  • Loading branch information
vertex-sdk-bot authored and Copybara-Service committed Jun 14, 2023
1 parent 0ab62a0 commit d4d8613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/aiplatform/preview/schedule/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,5 @@ def _dashboard_uri(self) -> str:
Dashboard uri where Schedule can be viewed.
"""
fields = self._parse_resource_name(self.resource_name)
url = f"https://console.cloud.google.com/vertex-ai/locations/{fields['location']}/pipelines/runs/{fields['schedule']}?project={fields['project']}"
url = f"https://console.cloud.google.com/vertex-ai/locations/{fields['location']}/pipelines/schedules/{fields['schedule']}?project={fields['project']}"
return url

0 comments on commit d4d8613

Please sign in to comment.