Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions .changeset/fix-hub-cuda-versions-and-log-level.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"worker-comfyui": patch
---

fix: broaden `allowedCudaVersions` in hub config and lower default log level

- Expand `allowedCudaVersions` in `.runpod/hub.json` and `.runpod/tests_.json` to include `12.8`, `12.9`, and `13.0`. The previous `["12.7", "12.6"]` allow-list excluded the majority of modern Runpod hosts (which run CUDA 12.8+), causing hub deployments to land on incompatible hosts and crash-loop with `nvidia-container-cli: requirement error: unsatisfied condition: cuda>=12.6`.
- Change default `COMFY_LOG_LEVEL` from `DEBUG` to `INFO`. With `DEBUG`, more than 75% of worker log lines were low-level comfy internals (`apply_rope1`, `Backend eager selected`, `aimdo: src/...:DEBUG:`, `Popen([...])`), drowning out the actual handler output. Users who want verbose logs can still set `COMFY_LOG_LEVEL=DEBUG` explicitly.
4 changes: 2 additions & 2 deletions .runpod/hub.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"containerDiskInGb": 20,
"gpuIds": "ADA_24",
"gpuCount": 1,
"allowedCudaVersions": ["12.7", "12.6"],
"allowedCudaVersions": ["13.0", "12.9", "12.8", "12.7", "12.6"],
"env": [
{
"key": "COMFY_ORG_API_KEY",
Expand Down Expand Up @@ -67,7 +67,7 @@
"name": "ComfyUI Log Level",
"type": "string",
"description": "Log level for ComfyUI (DEBUG, INFO, WARNING, ERROR, CRITICAL)",
"default": "DEBUG",
"default": "INFO",
"advanced": true
}
},
Expand Down
2 changes: 1 addition & 1 deletion .runpod/tests_.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@
"value": "false"
}
],
"allowedCudaVersions": ["12.7", "12.6"]
"allowedCudaVersions": ["13.0", "12.9", "12.8", "12.7", "12.6"]
}
}
Loading