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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user