diff --git a/glob/manager_server.py b/glob/manager_server.py index cf359e1d..c93d3565 100644 --- a/glob/manager_server.py +++ b/glob/manager_server.py @@ -1425,10 +1425,11 @@ async def default_cache_update(): await asyncio.gather(a, b, c, d, e) - if not core.get_config()['skip_migration_check']: - await core.check_need_to_migrate() - else: - logging.info("[ComfyUI-Manager] Migration check is skipped...") + # NOTE: hide migration button temporarily. + # if not core.get_config()['skip_migration_check']: + # await core.check_need_to_migrate() + # else: + # logging.info("[ComfyUI-Manager] Migration check is skipped...") threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()