mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-03-19 13:47:05 +08:00
Current behavior: comfy/ldm/hunyuan_video/upsampler.py imports model_management directly as top-level modules. Double initialization and log spamming. Fix: Changed imports to absolute imports (from comfy import ...) to align with the rest of the codebase and ensure the singleton instances are used correctly.