From 693116f3b5f4ddf99f14c988135c6cb76dd82baa Mon Sep 17 00:00:00 2001 From: Dmitry Frolov Date: Sun, 4 Sep 2022 14:03:38 -0400 Subject: [PATCH] [CLI] Fix status message on cluster creation (#14477) * Fix message on BYOC cluster creation Co-authored-by: thomas chaton --- src/lightning_app/cli/cmd_clusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lightning_app/cli/cmd_clusters.py b/src/lightning_app/cli/cmd_clusters.py index 371aaa0f76..a41d44ceba 100644 --- a/src/lightning_app/cli/cmd_clusters.py +++ b/src/lightning_app/cli/cmd_clusters.py @@ -91,7 +91,7 @@ class AWSClusterManager: if wait: _wait_for_cluster_state(self.api_client, resp.id, V1ClusterState.RUNNING) - click.echo(f"${resp.id} cluster is ${resp.status.phase}") + click.echo(f"{resp.id} cluster is in {resp.status.phase} state") def get_clusters(self): resp = self.api_client.cluster_service_list_clusters(phase_not_in=[V1ClusterState.DELETED])