File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed
Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,8 @@ def provision_deployment(
272272 dashboard_url = get_deployment_url (deployment )
273273 if dashboard_url :
274274 cli_utils .declare (
275- f"\n View in ZenML Cloud: [link]{ dashboard_url } [/link]"
275+ f"\n View in ZenML Cloud: [link]{ dashboard_url } [/link]" ,
276+ no_wrap = True ,
276277 )
277278
278279
Original file line number Diff line number Diff line change @@ -491,7 +491,8 @@ def deploy_pipeline(
491491 dashboard_url = get_deployment_url (deployment )
492492 if dashboard_url :
493493 cli_utils .declare (
494- f"\n View in the ZenML UI: [link]{ dashboard_url } [/link]"
494+ f"\n View in the ZenML UI: [link]{ dashboard_url } [/link]" ,
495+ no_wrap = True ,
495496 )
496497
497498 if attach :
@@ -1272,7 +1273,8 @@ def deploy_snapshot(
12721273 dashboard_url = get_deployment_url (deployment )
12731274 if dashboard_url :
12741275 cli_utils .declare (
1275- f"\n View in the ZenML UI: [link]{ dashboard_url } [/link]"
1276+ f"\n View in the ZenML UI: [link]{ dashboard_url } [/link]" ,
1277+ no_wrap = True ,
12761278 )
12771279
12781280
Original file line number Diff line number Diff line change @@ -2363,9 +2363,13 @@ def pretty_print_deployment(
23632363 if deployment .url :
23642364 declare ("\n [bold]Connection information:[/bold]" )
23652365
2366- declare (f"\n [bold]Endpoint URL:[/bold] [link]{ deployment .url } [/link]" )
23672366 declare (
2368- f"[bold]Swagger URL:[/bold] [link]{ deployment .url .rstrip ('/' )} /docs[/link]"
2367+ f"\n [bold]Endpoint URL:[/bold] [link]{ deployment .url } [/link]" ,
2368+ no_wrap = True ,
2369+ )
2370+ declare (
2371+ f"[bold]Swagger URL:[/bold] [link]{ deployment .url .rstrip ('/' )} /docs[/link]" ,
2372+ no_wrap = True ,
23692373 )
23702374
23712375 # Auth key handling with proper security
You can’t perform that action at this time.
0 commit comments