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])