--disable-manager -> --enable-manager

This commit is contained in:
comfyanonymous
2025-09-17 20:58:42 -04:00
parent 77e10752fe
commit e7ff647d02
4 changed files with 17 additions and 17 deletions

View File

@@ -43,7 +43,7 @@ import folder_paths
import latent_preview
import node_helpers
if not args.disable_manager:
if args.enable_manager:
import comfyui_manager
def before_node_execution():
@@ -2234,7 +2234,7 @@ async def init_external_custom_nodes():
logging.info(f"Skipping {possible_module} due to disable_all_custom_nodes and whitelist_custom_nodes")
continue
if not args.disable_manager:
if args.enable_manager:
if comfyui_manager.should_be_disabled(module_path):
logging.info(f"Blocked by policy: {module_path}")
continue