fixed: Bug fix in glob/manager_server.py that prevented cache updates when installed via pip. (#2237)

Until the cacheless implementation is fully applied, the cache must always be updated — otherwise, various parts of the system will malfunction.
This commit is contained in:
Dr.Lt.Data
2025-10-21 07:16:57 +09:00
committed by GitHub
parent e0640e7014
commit 079ac254ce
3 changed files with 8 additions and 11 deletions

View File

@@ -2045,10 +2045,7 @@ async def default_cache_update():
)
traceback.print_exc()
if (
core.get_config()["network_mode"] != "offline"
and not manager_util.is_manager_pip_package()
):
if core.get_config()["network_mode"] != "offline":
a = get_cache("custom-node-list.json")
b = get_cache("extension-node-map.json")
c = get_cache("model-list.json")