Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lando_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ def wait_for_job_completion(
click.echo("Job has been submitted and will be started soon.")
elif status == "IN_PROGRESS":
click.echo("Job is in progress.")
elif status == "DEFERRED":
click.echo("Job was deferred and will be retried.")
elif status == "FAILED":
error_details = result.get("error", "No additional details provided.")
click.secho(f"Job {job_id} failed!", fg="red", bold=True)
Expand Down