fix: CON-1445/1446/1447 repair ComfyUI's bundled package drift at boot - #166
Open
mariiachekmasova-runpod wants to merge 35 commits into
Open
mariiachekmasova-runpod wants to merge 35 commits into
mariiachekmasova-runpod wants to merge 35 commits into
Conversation
mariiachekmasova-runpod
marked this pull request as ready for review
September 16, 2026 16:14
Madiator2011Work
approved these changes
Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ComfyUI pins its bundled packages (comfy-kitchen, frontend, workflow-templates,
embedded-docs) exactly per release. They ship in the image and are never
reinstalled, while the checkout on the network volume can move ahead through
Manager or
git. Thenmain.pyaborts importing a comfy_kitchen that predatesit — 8188 never binds while SSH stays up — or the templates package is versions
behind and newly published templates never appear.
start.shnow compares the workspacerequirements.txtpins against what isinstalled and installs only the ones that disagree, before ComfyUI starts. torch
is excluded; the runtime constraints file already owns it. Deliberately no
--no-deps: the templates meta-package pins its own sub-packages, and skippingthem would update the meta while leaving
-core/-json/-media-*stale.Verified on live pods from the same starting state: the published
cuda13.0dies with
AttributeError ... int8_attention_is_availableatattention.py:54,while this branch prints
comfy-kitchen: installed 0.2.26, ComfyUI wants 0.2.34,installs it and serves. Same for the frontend/templates case — the template
browser then lists the MiniMax H3 templates the reports said were missing. With
nothing drifted the check is silent.