If you have Comfy CLI installed, you can use the automated bisect tool to find the problematic node:
Copy
Ask AI
# Start a bisect sessioncomfy-cli node bisect start# Follow the prompts:# - Test ComfyUI with the current set of enabled nodes# - Mark as 'good' if the issue is gone: comfy-cli node bisect good# - Mark as 'bad' if the issue persists: comfy-cli node bisect bad# - Repeat until the problematic node is identified# Reset when donecomfy-cli node bisect reset
The bisect tool will automatically enable/disable nodes and guide you through the process.
Instead of testing each node individually (which could take hours), we split the nodes in half repeatedly:
Copy
Ask AI
8 nodes → Test 4 nodes → Test 2 nodes → Test 1 node ✓Example with 8 nodes:1. Test nodes 1-4: Issue persists ✓ → Problem in remaining nodes 5-82. Test nodes 5-6: Issue gone ✓ → Problem in nodes 7-8 3. Test node 7: Issue persists ✓ → Node 7 is the problem!This takes only 3 tests instead of testing all 8 nodes individually.