Skip to content
Merged
Changes from all commits
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
11 changes: 4 additions & 7 deletions comfy_cli/error_codes.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,6 @@ class ErrorCode:
"Background watcher gave up after max runtime without a terminal status.",
"the job may still be running — check `comfy jobs status <id>`, or re-watch with a longer `--timeout`",
),
ErrorCode(
"server_died",
"Server connection dropped while a foreground (`--wait`) job was in flight; recorded on the job state file.",
"check the server (it may have been OOM-killed); the prompt_id is in `comfy jobs status <id>`",
),
ErrorCode(
"watcher_poll_error",
"Background watcher encountered a transient error polling the server.",
Expand All @@ -375,8 +370,10 @@ class ErrorCode:
ErrorCode(
"server_died",
"The local ComfyUI server became unreachable (or restarted without the job) while it "
"was in flight — the server likely crashed or was killed (e.g. an out-of-memory allocation).",
"check the ComfyUI server log, then `comfy launch` and re-submit the workflow",
"was in flight — the server likely crashed or was killed (e.g. an out-of-memory allocation). "
"Raised by the background watcher and by a foreground (`--wait`) run; recorded on the job state file.",
"check the ComfyUI server log (it may have been OOM-killed), then `comfy launch` and re-submit; "
"the prompt_id is in `comfy jobs status <id>`",
),
ErrorCode(
"unknown_status_stall",
Expand Down
Loading