Paste #136327: SwarmUI v0.9.7.0 Server Log - 2025-09-26 12:18:11

Date: 2025/09/26 04:18:12 UTC-07:00
Type: Swarm Debug Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000


2025-09-26 11:39:09.307 [Init] === SwarmUI v0.9.7.0 Starting at 2025-09-26 11:39:09 ===
2025-09-26 11:39:09.398 [Init] Prepping extension: Quaggles.Extensions.FaceTools.FaceToolsExtension...
2025-09-26 11:39:09.400 [Init] Prepping extension: SwarmUI.Builtin_ScorersExtension.ScorersExtension...
2025-09-26 11:39:09.404 [Init] Prepping extension: SwarmUI.Builtin_ImageBatchToolExtension.ImageBatchToolExtension...
2025-09-26 11:39:09.409 [Init] Prepping extension: SwarmUI.Builtin_GridGeneratorExtension.GridGeneratorExtension...
2025-09-26 11:39:09.413 [Init] Prepping extension: SwarmUI.Builtin_DynamicThresholding.DynamicThresholdingExtension...
2025-09-26 11:39:09.417 [Init] Prepping extension: SwarmUI.Builtin_ComfyUIBackend.ComfyUIBackendExtension...
2025-09-26 11:39:09.421 [Init] Prepping extension: SwarmUI.Builtin_AutoWebUIExtension.AutoWebUIBackendExtension...
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'ScorersExtension'
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'ImageBatchToolExtension'
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'GridGeneratorExtension'
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'DynamicThresholdingExtension'
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'ComfyUIBackendExtension'
2025-09-26 11:39:09.493 [Verbose] Don't populate metadata for core extension 'AutoWebUIBackendExtension'
2025-09-26 11:39:09.493 [Init] Parsing command line...
2025-09-26 11:39:09.494 [Init] Loading settings file...
2025-09-26 11:39:09.496 [Verbose] Will fetch metadata for extension 'FaceToolsExtension'
2025-09-26 11:39:09.535 [Init] Re-saving settings file...
2025-09-26 11:39:09.546 [Verbose] Extension 'FaceToolsExtension' reports remote git URL 'https://github.com/Quaggles/SwarmUI-FaceTools'
2025-09-26 11:39:09.579 [Init] Applying command line settings...
2025-09-26 11:39:09.623 [Init] SwarmUI was installed 2025-02-21 (7 months ago) with version 0.9.5.0
2025-09-26 11:39:09.623 [Init] Swarm base path is: /config/07-SwarmUI/SwarmUI
2025-09-26 11:39:09.623 [Init] Running on OS: Ubuntu 24.04.2 LTS
2025-09-26 11:39:09.624 [Debug] [Load Time] Initial settings load took 0.31s (0.31s from start)
2025-09-26 11:39:09.678 [Init] CPU Cores: 16 | RAM: 125.73 GiB total, 91.20 GiB available, unknown virtual/swap
2025-09-26 11:39:09.678 [Init] GPU 0: NVIDIA GeForce RTX 4070 | Temp 33C | Util 0% GPU, 0% Memory | VRAM 11.99 GiB total, 11.61 GiB free, 1024.00 KiB used
2025-09-26 11:39:09.678 [Init] Will use GPU accelerations specific to NVIDIA GeForce RTX 40xx series and newer.
2025-09-26 11:39:09.679 [Debug] [Load Time] Extension PreInit took 0.06s (0.37s from start)
2025-09-26 11:39:09.679 [Init] Prepping options...
2025-09-26 11:39:09.682 [Init] Current git commit is [cad8c44f: handle 'ui' extension tag properly], marked as date 2025-09-24 21:59:48 (12 hours ago)
2025-09-26 11:39:09.871 [Debug] [Load Time] Prep Options took 0.19s (0.56s from start)
2025-09-26 11:39:09.871 [Debug] [Load Time] Web PreInit took 0s (0.56s from start)
2025-09-26 11:39:09.911 [Debug] [Load Time] Extensions Init took 0.04s (0.6s from start)
2025-09-26 11:39:09.911 [Debug] [Load Time] Prep Utils took 0s (0.6s from start)
2025-09-26 11:39:10.010 [Debug] [Load Time] Languages load took 0.1s (0.7s from start)
2025-09-26 11:39:10.010 [Init] Loading models list...
2025-09-26 11:39:10.015 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sd15
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlhyper
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder chroma
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlturbo
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxl
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlpony
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxllightning
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder noobai
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder illustrious
2025-09-26 11:39:10.021 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_kontext
2025-09-26 11:39:10.022 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_krea
2025-09-26 11:39:10.022 [Verbose] [Model Scan] Add all Stable-Diffusion from folder qwen
2025-09-26 11:39:10.022 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux
2025-09-26 11:39:10.190 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:39:10.192 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_kontext
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder wan
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder qwen
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder chroma
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder hunyuan_image
2025-09-26 11:39:10.193 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_krea
2025-09-26 11:39:10.264 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:39:10.266 [Debug] Have 34 Stable-Diffusion models.
2025-09-26 11:39:10.267 [Verbose] [Model Scan] Add all VAE from folder 
2025-09-26 11:39:10.269 [Verbose] [Model Scan] Add all VAE from folder Wan
2025-09-26 11:39:10.269 [Verbose] [Model Scan] Add all VAE from folder QwenImage
2025-09-26 11:39:10.269 [Verbose] [Model Scan] Add all VAE from folder HunyuanVideo
2025-09-26 11:39:10.269 [Verbose] [Model Scan] Add all VAE from folder HunyuanImage
2025-09-26 11:39:10.315 [Debug] Have 8 VAE models.
2025-09-26 11:39:10.316 [Verbose] [Model Scan] Add all LoRA from folder 
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder sdxl
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder sdxlpony
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder illustrious
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder chroma
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder sd15
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder wan
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder flux
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder flux_kontext
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder qwen
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder hunyuan
2025-09-26 11:39:10.318 [Verbose] [Model Scan] Add all LoRA from folder HunyuanVideo
2025-09-26 11:39:13.092 [Debug] Have 666 LoRA models.
2025-09-26 11:39:13.093 [Verbose] [Model Scan] Add all Embedding from folder 
2025-09-26 11:39:13.095 [Verbose] [Model Scan] Add all Embedding from folder illustrious
2025-09-26 11:39:13.095 [Verbose] [Model Scan] Add all Embedding from folder sdxlpony
2025-09-26 11:39:13.143 [Debug] Have 8 Embedding models.
2025-09-26 11:39:13.144 [Verbose] [Model Scan] Add all ControlNet from folder 
2025-09-26 11:39:13.174 [Debug] Have 13 ControlNet models.
2025-09-26 11:39:13.175 [Verbose] [Model Scan] Add all Clip from folder 
2025-09-26 11:39:13.192 [Debug] Have 11 Clip models.
2025-09-26 11:39:13.194 [Verbose] [Model Scan] Add all ClipVision from folder 
2025-09-26 11:39:13.205 [Debug] Have 4 ClipVision models.
2025-09-26 11:39:13.437 [Debug] [Load Time] Model listing took 3.43s (4.13s from start)
2025-09-26 11:39:13.437 [Init] Loading backends...
2025-09-26 11:39:13.439 [Init] Loading backends from file...
2025-09-26 11:39:13.444 [Debug] [Load ComfyUI Self-Starting #0] Waiting to load...
2025-09-26 11:39:13.447 [Debug] [Load Time] Backends took 0.01s (4.14s from start)
2025-09-26 11:39:13.447 [Init] Prepping API...
2025-09-26 11:39:13.448 [Debug] [Load ComfyUI Self-Starting #0] Will now load...
2025-09-26 11:39:13.448 [Init] Initializing backend #0 - ComfyUI Self-Starting...
2025-09-26 11:39:13.450 [Debug] [Load ComfyUI Self-Starting #0] Starting init...
2025-09-26 11:39:13.450 [Debug] [Load Time] API took 0s (4.14s from start)
2025-09-26 11:39:13.450 [Init] Prepping webserver...
2025-09-26 11:39:13.451 [Debug] [Load ComfyUI Self-Starting #0] Will emit comfy model paths file...
2025-09-26 11:39:13.454 [Init] Backend request handler loop ready...
2025-09-26 11:39:13.455 [Debug] [Load ComfyUI Self-Starting #0] Done emitting comfy model paths file.
2025-09-26 11:39:13.455 [Debug] [Load ComfyUI Self-Starting #0] Will add args:  --extra-model-paths-config /config/07-SwarmUI/SwarmUI/Data/comfy-auto-model.yaml --fast fp16_accumulation cublas_ops --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-09-26 11:39:13.457 [Debug] [Load ComfyUI Self-Starting #0] Will track node repo load task...
2025-09-26 11:39:13.457 [Debug] [Load ComfyUI Self-Starting #0] Will track comfy git pull auto-update task...
2025-09-26 11:39:13.457 [Debug] [Load ComfyUI Self-Starting #0] Waiting on git tasks to complete...
2025-09-26 11:39:13.458 [Debug] [Load ComfyUI Self-Starting #0] Running git pull in comfy folder...
2025-09-26 11:39:13.510 [Debug] [Load ComfyUI Self-Starting #0] Will ensure all node repos...
2025-09-26 11:39:13.552 [Debug] [Load Time] [Web] WebApp builder prep took 0.06s (0.06s from start)
2025-09-26 11:39:13.615 [Debug] [Load ComfyUI Self-Starting #0] Ensure node repos - Will git pull for ComfyUI-TeaCache...
2025-09-26 11:39:13.628 [Debug] [Load Time] [Web] WebApp build took 0.08s (0.13s from start)
2025-09-26 11:39:13.629 [Debug] [Load Time] [Web] exception handler took 0s (0.13s from start)
2025-09-26 11:39:13.629 [Debug] [Load Time] [Web] StartStop handler took 0s (0.13s from start)
2025-09-26 11:39:13.629 [Debug] [Load Time] [Web] static files took 0s (0.13s from start)
2025-09-26 11:39:13.666 [Debug] [Load ComfyUI Self-Starting #0] Ensure node repos - Will git pull for ComfyUI-nunchaku...
2025-09-26 11:39:13.717 [Debug] [Load Time] [Web] core use calls took 0.09s (0.22s from start)
2025-09-26 11:39:13.724 [Debug] [Load Time] [Web] core maps took 0.01s (0.23s from start)
2025-09-26 11:39:13.724 [Init] Scan for web extensions...
2025-09-26 11:39:13.732 [Debug] [Load Time] [Web] end took 0.01s (0.24s from start)
2025-09-26 11:39:13.732 [Debug] [Load Time] Web prep took 0.28s (4.42s from start)
2025-09-26 11:39:13.732 [Init] Readying extensions for launch...
2025-09-26 11:39:13.733 [Debug] [Load Time] Extensions pre-launch took 0s (4.42s from start)
2025-09-26 11:39:13.733 [Init] Launching server...
2025-09-26 11:39:13.735 [Init] Starting webserver on http://0.0.0.0:9000
2025-09-26 11:39:13.806 [Debug] [Load Time] Web launch took 0.07s (4.49s from start)
2025-09-26 11:39:14.479 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-TeaCache: Already up to date.
2025-09-26 11:39:18.448 [Init] Swarm is up to date! You have version 0.9.7.0, and 0.9.7-Beta is the latest.
2025-09-26 11:39:18.448 [Init] SwarmUI v0.9.7.0 - Local is now running.
2025-09-26 11:39:23.021 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-nunchaku: Updating 8beaa0c..8dad5f7
Fast-forward
 README.md                                          |    1 +
 .../nunchaku-qwen-image-edit-2509-lightning.json   | 1205 ++++++++++++++++++++
 2 files changed, 1206 insertions(+)
 create mode 100644 example_workflows/nunchaku-qwen-image-edit-2509-lightning.json

From https://github.com/mit-han-lab/ComfyUI-nunchaku
   8beaa0c..8dad5f7  main       -> origin/main
   8beaa0c..8dad5f7  dev        -> origin/dev
2025-09-26 11:39:23.021 [Debug] [Load ComfyUI Self-Starting #0] Done ensuring all node repos.
2025-09-26 11:39:25.144 [Debug] [Load ComfyUI Self-Starting #0] Comfy git pull response: Updating b8730510..ce4cb238
Created autostash: d26b6489
Fast-forward
 comfy/ldm/wan/model.py            |   2 +-
 comfy/model_management.py         |   4 +-
 comfy_api_nodes/apis/rodin_api.py |   3 +-
 comfy_api_nodes/nodes_rodin.py    | 142 +++++++++++++++++++-----
 comfy_extras/nodes_audio.py       | 223 ++++++++++++++++++++++++++++++++++++++
 comfy_extras/nodes_mask.py        |  21 ++--
 6 files changed, 357 insertions(+), 38 deletions(-)

From https://github.com/comfyanonymous/ComfyUI
   b8730510..ce4cb238  master             -> origin/master
   4dd843d3..ca395529  asset-management   -> origin/asset-management
 * [new branch]        flipflop-stream    -> origin/flipflop-stream
   bb44c2ec..c2115a4b  worksplit-multigpu -> origin/worksplit-multigpu
Applied autostash.
2025-09-26 11:39:25.454 [Debug] [Load ComfyUI Self-Starting #0] Comfy git checkout master response: Your branch is up to date with 'origin/master'.

Already on 'master'
2025-09-26 11:39:25.455 [Debug] [Load ComfyUI Self-Starting #0] All tasks done.
2025-09-26 11:39:25.469 [Debug] [Load ComfyUI Self-Starting #0] Will validate required libs...
2025-09-26 11:39:25.485 [Debug] Will do Comfy Python call: --version
2025-09-26 11:39:25.490 [Debug] (ComfyUI launch) Adding path /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/venv
2025-09-26 11:39:25.515 [Debug] [Load ComfyUI Self-Starting #0] Done validating required libs.
2025-09-26 11:39:25.515 [Debug] [Load ComfyUI Self-Starting #0] Starting self-start ComfyUI process...
2025-09-26 11:39:25.518 [Debug] [Load ComfyUI Self-Starting #0] Requested generic launch of dlbackend/ComfyUI/main.py on GPU 0 from ComfyUI-0
2025-09-26 11:39:25.560 [Debug] (ComfyUI-0 launch) Adding path /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/venv
2025-09-26 11:39:25.560 [Debug] [Load ComfyUI Self-Starting #0] (ComfyUI-0 launch) Will use python: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/venv/bin/python3
2025-09-26 11:39:25.560 [Debug] [Load ComfyUI Self-Starting #0] Will start process...
2025-09-26 11:39:25.571 [Init] Self-Start ComfyUI-0 on port 7821 is loading...
2025-09-26 11:39:25.770 [Info] Creating new session 'local' for 192.168.1.168
2025-09-26 11:39:25.802 [Verbose] User local wants to list images in '', maxDepth=3, sortBy=Date, reverse=False, maxInHistory=100000, maxScanned=50000
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path checkpoints /config/07-SwarmUI/SwarmUI/Models/Stable-Diffusion
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path vae /config/07-SwarmUI/SwarmUI/Models/VAE
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras /config/07-SwarmUI/SwarmUI/Models/Lora
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras /config/07-SwarmUI/SwarmUI/Models/LyCORIS
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models /config/07-SwarmUI/SwarmUI/Models/ESRGAN
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models /config/07-SwarmUI/SwarmUI/Models/RealESRGAN
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models /config/07-SwarmUI/SwarmUI/Models/SwinIR
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models /config/07-SwarmUI/SwarmUI/Models/upscale-models
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models /config/07-SwarmUI/SwarmUI/Models/upscale_models
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path embeddings /config/07-SwarmUI/SwarmUI/Models/Embeddings
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path embeddings /config/07-SwarmUI/SwarmUI/Models/embeddings
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path hypernetworks /config/07-SwarmUI/SwarmUI/Models/hypernetworks
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path controlnet /config/07-SwarmUI/SwarmUI/Models/controlnet
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path controlnet /config/07-SwarmUI/SwarmUI/Models/ControlNet
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip /config/07-SwarmUI/SwarmUI/Models/clip
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip /config/07-SwarmUI/SwarmUI/Models/CLIP
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip_vision /config/07-SwarmUI/SwarmUI/Models/clip_vision
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path unet /config/07-SwarmUI/SwarmUI/Models/unet
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path diffusion_models /config/07-SwarmUI/SwarmUI/Models/diffusion_models
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path gligen /config/07-SwarmUI/SwarmUI/Models/gligen
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path ipadapter /config/07-SwarmUI/SwarmUI/Models/ipadapter
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path yolov8 /config/07-SwarmUI/SwarmUI/Models/yolov8
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path tensorrt /config/07-SwarmUI/SwarmUI/Models/tensorrt
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path clipseg /config/07-SwarmUI/SwarmUI/Models/clipseg
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path style_models /config/07-SwarmUI/SwarmUI/Models/style_models
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/DLNodes
2025-09-26 11:39:26.409 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes
2025-09-26 11:39:26.574 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:26.576 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:26.611 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:26.641 [Verbose] Listed 7340 images in 0.84 seconds.
2025-09-26 11:39:27.611 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:27.611 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:27.614 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:28.614 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:28.614 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:28.616 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:29.616 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:29.616 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:29.618 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:29.802 [Debug] User local requested check for updates.
2025-09-26 11:39:30.619 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:30.619 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:30.621 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:31.621 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:31.621 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:31.623 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:32.623 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:32.623 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:32.625 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:33.625 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:33.625 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:33.626 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:34.626 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:34.626 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:34.628 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:35.628 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:39:35.628 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:35.628 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:35.630 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:36.630 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:36.630 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:36.631 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:37.069 [Debug] [ComfyUI-0/STDOUT] [START] Security scan
2025-09-26 11:39:37.069 [Debug] [ComfyUI-0/STDOUT] [DONE] Security scan
2025-09-26 11:39:37.069 [Debug] [ComfyUI-0/STDOUT] ## ComfyUI-Manager: installing dependencies done.
2025-09-26 11:39:37.070 [Debug] [ComfyUI-0/STDOUT] ** ComfyUI startup time: 2025-09-26 11:39:37.069
2025-09-26 11:39:37.071 [Debug] [ComfyUI-0/STDOUT] ** Platform: Linux
2025-09-26 11:39:37.071 [Debug] [ComfyUI-0/STDOUT] ** Python version: 3.11.13 | packaged by conda-forge | (main, Jun  4 2025, 14:48:23) [GCC 13.3.0]
2025-09-26 11:39:37.072 [Debug] [ComfyUI-0/STDOUT] ** Python executable: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/venv/bin/python3
2025-09-26 11:39:37.072 [Debug] [ComfyUI-0/STDOUT] ** ComfyUI Path: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI
2025-09-26 11:39:37.073 [Debug] [ComfyUI-0/STDOUT] ** ComfyUI Base Folder Path: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI
2025-09-26 11:39:37.073 [Debug] [ComfyUI-0/STDOUT] ** User directory: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/user
2025-09-26 11:39:37.073 [Debug] [ComfyUI-0/STDOUT] ** ComfyUI-Manager config path: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/user/default/ComfyUI-Manager/config.ini
2025-09-26 11:39:37.074 [Debug] [ComfyUI-0/STDOUT] ** Log path: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/user/comfyui.log
2025-09-26 11:39:37.632 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:37.632 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:37.633 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:38.544 [Debug] Update checker: current hash for FaceToolsExtension is 65d5e30a89f0989765065e2d05ea327fb0a07ecd, origin hash is 65d5e30a89f0989765065e2d05ea327fb0a07ecd
2025-09-26 11:39:38.545 [Debug] Update check complete - 0 Swarm commits, 0 extensions, 0 backends.
2025-09-26 11:39:38.634 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:38.634 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:38.635 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:39.636 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:39.636 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:39.637 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:40.638 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:40.638 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:40.639 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:40.639 [Debug] Comfy backend 0 has failed to load value set repeatedly. Ignoring errors of HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:41.640 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:41.640 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:41.641 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:42.641 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:42.641 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:42.643 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:43.643 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:43.643 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:43.645 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:44.645 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:44.645 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:44.646 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:45.647 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:39:45.647 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:45.647 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:45.648 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:46.648 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:46.648 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:46.649 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:47.649 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:47.649 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:47.650 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:48.651 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:48.651 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:48.652 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:49.652 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:49.652 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:49.653 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:50.653 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:50.653 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:50.654 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:51.655 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:51.655 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:51.657 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:52.657 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:52.657 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:52.658 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:53.659 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:53.659 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:53.660 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:54.660 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:54.660 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:54.661 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:55.661 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:39:55.661 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:55.661 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:55.662 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:56.662 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:56.663 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:56.664 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:57.665 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:57.665 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:57.666 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:58.666 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:58.666 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:58.667 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:39:59.667 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:39:59.667 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:39:59.668 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:00.668 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:00.668 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:00.670 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:01.670 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:01.670 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:01.671 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:02.672 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:02.672 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:02.673 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:03.673 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:03.673 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:03.674 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:04.674 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:04.674 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:04.676 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:05.676 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:05.676 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:05.676 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:05.677 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:06.677 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:06.677 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:06.678 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:06.678 [Warning] Comfy backend 0 has failed to load value set repeatedly. Is it stuck loading very slowly, or has it internally failed? Ignoring errors of HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:07.678 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:07.678 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:07.679 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:08.679 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:08.679 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:08.680 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:09.481 [Debug] [ComfyUI-0/STDERR] Checkpoint files will always be loaded safely.
2025-09-26 11:40:09.680 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:09.680 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:09.681 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:09.826 [Debug] [ComfyUI-0/STDERR] Total VRAM 11885 MB, total RAM 128750 MB
2025-09-26 11:40:09.826 [Debug] [ComfyUI-0/STDERR] pytorch version: 2.7.1+cu128
2025-09-26 11:40:09.830 [Debug] [ComfyUI-0/STDERR] Enabled fp16 accumulation.
2025-09-26 11:40:09.830 [Debug] [ComfyUI-0/STDERR] Set vram state to: NORMAL_VRAM
2025-09-26 11:40:09.830 [Debug] [ComfyUI-0/STDERR] Device: cuda:0 NVIDIA GeForce RTX 4070 : cudaMallocAsync
2025-09-26 11:40:10.682 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:10.682 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:10.683 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:11.684 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:11.684 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:11.685 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:12.686 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:12.686 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:12.687 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:13.688 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:13.688 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:13.689 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:14.690 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:14.690 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:14.691 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:15.692 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:15.692 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:15.692 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:15.693 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:16.693 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:16.693 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:16.695 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:17.695 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:17.695 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:17.696 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:18.696 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:18.696 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:18.697 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:19.697 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:19.697 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:19.698 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:20.698 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:20.698 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:20.699 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:21.699 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:21.699 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:21.700 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:22.700 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:22.700 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:22.701 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:23.702 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:23.702 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:23.703 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:24.703 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:24.703 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:24.704 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:25.704 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:25.704 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:25.704 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:25.706 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:26.705 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:26.705 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:26.707 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:27.706 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:27.706 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:27.707 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:28.708 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:28.708 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:28.710 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:29.710 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:29.710 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:29.711 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:30.712 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:30.712 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:30.713 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:31.714 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:31.714 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:31.715 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:32.714 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:32.714 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:32.716 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:33.716 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:33.716 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:33.717 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:34.359 [Debug] [ComfyUI-0/STDERR] Using sage attention
2025-09-26 11:40:34.717 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:34.717 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:34.718 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:35.718 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:35.718 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:35.718 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:35.719 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:36.719 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:36.719 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:36.720 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:37.720 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:37.720 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:37.721 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:38.721 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:38.721 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:38.722 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:39.722 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:39.722 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:39.723 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:40.723 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:40.723 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:40.724 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:41.724 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:41.724 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:41.724 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:42.725 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:42.725 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:42.726 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:43.727 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:43.727 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:43.728 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:44.728 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:44.728 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:44.729 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:45.729 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:45.729 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:45.729 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:45.730 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:46.731 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:46.731 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:46.732 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:47.732 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:47.732 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:47.733 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:48.732 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:48.732 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:48.733 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:49.734 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:49.734 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:49.735 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:50.735 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:50.735 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:50.736 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:51.736 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:51.736 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:51.737 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:52.737 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:52.737 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:52.738 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:53.739 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:53.739 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:53.740 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:54.741 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:54.741 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:54.742 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:55.742 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:40:55.742 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:55.742 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:55.743 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:56.743 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:56.743 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:56.744 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:57.743 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:57.743 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:57.744 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:58.744 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:58.744 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:58.745 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:40:59.682 [Debug] [ComfyUI-0/STDERR] Python version: 3.11.13 | packaged by conda-forge | (main, Jun  4 2025, 14:48:23) [GCC 13.3.0]
2025-09-26 11:40:59.682 [Debug] [ComfyUI-0/STDERR] ComfyUI version: 0.3.60
2025-09-26 11:40:59.690 [Debug] [ComfyUI-0/STDERR] Using existing copy of specific frontend version tag: Comfy-Org/[email protected]
2025-09-26 11:40:59.690 [Debug] [ComfyUI-0/STDERR] [Prompt Server] web root: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/web_custom_versions/Comfy-Org_ComfyUI_frontend/1.26.13
2025-09-26 11:40:59.746 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:40:59.746 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:40:59.747 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:00.748 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:00.748 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:00.749 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:01.749 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:01.749 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:01.750 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:02.749 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:02.749 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:02.750 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:03.751 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:03.751 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:03.752 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:04.753 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:04.753 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:04.754 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:05.754 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:05.754 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:05.754 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:05.755 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:06.756 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:06.756 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:06.757 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:07.757 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:07.757 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:07.758 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:08.758 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:08.758 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:08.759 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:08.979 [Debug] [ComfyUI-0/STDERR] [/config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using ckpts path: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts
2025-09-26 11:41:08.983 [Debug] [ComfyUI-0/STDERR] [/config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using symlinks: False
2025-09-26 11:41:08.989 [Debug] [ComfyUI-0/STDERR] [/config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']
2025-09-26 11:41:09.759 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:09.759 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:09.760 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:10.503 [Debug] [ComfyUI-0/STDOUT] DWPose: Onnxruntime with acceleration providers detected
2025-09-26 11:41:10.760 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:10.760 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:10.761 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:11.762 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:11.762 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:11.763 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:12.763 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:12.763 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:12.764 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:13.764 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:13.764 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:13.765 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:14.653 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] Crystools version: 1.27.3
2025-09-26 11:41:14.765 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:14.765 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:14.766 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:14.978 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] Platform release: 6.6.68-Unraid
2025-09-26 11:41:14.978 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] JETSON: Not detected.
2025-09-26 11:41:15.001 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] CPU: AMD Ryzen 7 3700X 8-Core Processor - Arch: x86_64 - OS: Linux 6.6.68-Unraid
2025-09-26 11:41:15.002 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] pynvml (NVIDIA) initialized.
2025-09-26 11:41:15.002 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] GPU/s:
2025-09-26 11:41:15.002 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] 0) NVIDIA GeForce RTX 4070
2025-09-26 11:41:15.002 [Debug] [ComfyUI-0/STDOUT] [Crystools INFO] NVIDIA Driver: 570.86.16
2025-09-26 11:41:15.094 [Debug] [ComfyUI-0/STDERR] xFormers not available
2025-09-26 11:41:15.107 [Debug] [ComfyUI-0/STDERR] xFormers not available
2025-09-26 11:41:15.201 [Debug] [ComfyUI-0/STDERR] ### Loading: ComfyUI-Impact-Pack (V8.22.2)
2025-09-26 11:41:15.767 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:15.767 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:15.767 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:15.768 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:16.508 [Debug] [ComfyUI-0/STDERR] [Impact Pack] Wildcards loading done.
2025-09-26 11:41:16.769 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:16.769 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:16.770 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:17.771 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:17.771 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:17.772 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:18.436 [Debug] [ComfyUI-0/STDERR] ### Loading: ComfyUI-Manager (V3.34)
2025-09-26 11:41:18.437 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] network_mode: public
2025-09-26 11:41:18.438 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] Since --preview-method is set, ComfyUI-Manager's preview method feature will be ignored.
2025-09-26 11:41:18.772 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:18.772 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:18.773 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:19.135 [Debug] [ComfyUI-0/STDERR] ### ComfyUI Version: v0.3.60-5-gce4cb238 | Released on '2025-09-25'
2025-09-26 11:41:19.566 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
2025-09-26 11:41:19.773 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:19.773 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:19.774 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:20.775 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:20.775 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:20.776 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:21.777 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:21.777 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:21.778 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:22.779 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:22.779 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:22.780 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:23.779 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:23.779 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:23.780 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:24.781 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:24.781 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:24.782 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:25.782 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:25.782 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:25.782 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:25.783 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:26.783 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:26.783 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:26.784 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:27.440 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
2025-09-26 11:41:27.464 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
2025-09-26 11:41:27.571 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2025-09-26 11:41:27.647 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
2025-09-26 11:41:27.784 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:27.784 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:27.784 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:28.785 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:28.785 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:28.786 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:29.786 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:29.786 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:29.787 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:30.787 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:30.787 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:30.788 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:31.788 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:31.788 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:31.789 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:32.788 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:32.788 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:32.790 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:33.790 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:33.790 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:33.791 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:34.791 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:34.791 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:34.792 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:35.793 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:35.793 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:35.793 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:35.794 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:36.794 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:36.794 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:36.795 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:37.795 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:37.795 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:37.797 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:38.796 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:38.796 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:38.797 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:39.798 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:39.798 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:39.799 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:40.800 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:40.800 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:40.801 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:41.801 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:41.801 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:41.801 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:42.802 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:42.802 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:42.803 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:43.803 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:43.803 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:43.804 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:44.803 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:44.803 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:44.804 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:45.805 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:45.805 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:45.805 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:45.806 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:46.806 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:46.806 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:46.806 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:47.807 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:47.807 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:47.808 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:48.808 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:48.808 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:48.809 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:49.810 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:49.810 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:49.811 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:50.811 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:50.811 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:50.812 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:51.811 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:51.811 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:51.813 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:52.813 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:52.813 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:52.814 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:53.692 [Debug] [ComfyUI-0/STDOUT] 
2025-09-26 11:41:53.693 [Debug] [ComfyUI-0/STDOUT] [rgthree-comfy] Loaded 48 epic nodes. 🎉
2025-09-26 11:41:53.693 [Debug] [ComfyUI-0/STDOUT] 
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT] 
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT] __     ______   ____                      ____              ____ _      _ 
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT] \ \   / /  _ \ / ___| __ _ _ __ ___   ___|  _ \  _____   __/ ___(_)_ __| |
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT]  \ \ / /| |_) | |  _ / _` | '_ ` _ \ / _ \ | | |/ _ \ \ / / |  _| | '__| |
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT]   \ V / |  _ <| |_| | (_| | | | | | |  __/ |_| |  __/\ V /| |_| | | |  | |
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT]    \_/  |_| \_\\____|\__,_|_| |_| |_|\___|____/ \___| \_/  \____|_|_|  |_|
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT]                                                                           
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT]              🎮 VRGameDevGirl custom nodes loaded successfully! 🎞️
2025-09-26 11:41:53.722 [Debug] [ComfyUI-0/STDOUT] 
2025-09-26 11:41:53.814 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:53.814 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:53.815 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:54.814 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:54.814 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:54.816 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:55.715 [Debug] [ComfyUI-0/STDERR] Using sage attention
2025-09-26 11:41:55.744 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 5/98
2025-09-26 11:41:55.781 [Debug] [ComfyUI-0/STDOUT] (RES4LYF) Init
2025-09-26 11:41:55.781 [Debug] [ComfyUI-0/STDOUT] (RES4LYF) Importing beta samplers.
2025-09-26 11:41:55.816 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:41:55.816 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:55.816 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:55.817 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:55.908 [Debug] [ComfyUI-0/STDOUT] (RES4LYF) Importing legacy samplers.
2025-09-26 11:41:56.122 [Debug] [ComfyUI-0/STDERR] ComfyUI-GGUF: Partial torch compile only, consider updating pytorch
2025-09-26 11:41:56.147 [Debug] [ComfyUI-0/STDERR] [MultiGPU] Logger initialized with level: INFO
2025-09-26 11:41:56.151 [Debug] [ComfyUI-0/STDERR] [MultiGPU] Patching mm.get_torch_device and mm.text_encoder_device
2025-09-26 11:41:56.174 [Debug] [ComfyUI-0/STDERR] [MultiGPU] Initiating custom_node Registration. . .
2025-09-26 11:41:56.179 [Debug] [ComfyUI-0/STDERR] -----------------------------------------------
2025-09-26 11:41:56.183 [Debug] [ComfyUI-0/STDERR] custom_node                   Found     Nodes
2025-09-26 11:41:56.187 [Debug] [ComfyUI-0/STDERR] -----------------------------------------------
2025-09-26 11:41:56.200 [Debug] [ComfyUI-0/STDERR] ComfyUI-LTXVideo                  N         0
2025-09-26 11:41:56.204 [Debug] [ComfyUI-0/STDERR] ComfyUI-Florence2                 N         0
2025-09-26 11:41:56.209 [Debug] [ComfyUI-0/STDERR] ComfyUI_bitsandbytes_NF4          N         0
2025-09-26 11:41:56.213 [Debug] [ComfyUI-0/STDERR] x-flux-comfyui                    N         0
2025-09-26 11:41:56.218 [Debug] [ComfyUI-0/STDERR] ComfyUI-MMAudio                   N         0
2025-09-26 11:41:56.222 [Debug] [ComfyUI-0/STDERR] ComfyUI-GGUF                      Y        18
2025-09-26 11:41:56.227 [Debug] [ComfyUI-0/STDERR] PuLID_ComfyUI                     N         0
2025-09-26 11:41:56.232 [Debug] [ComfyUI-0/STDERR] ComfyUI-HunyuanVideoWrapper       N         0
2025-09-26 11:41:56.237 [Debug] [ComfyUI-0/STDERR] ComfyUI-WanVideoWrapper           Y         8
2025-09-26 11:41:56.242 [Debug] [ComfyUI-0/STDERR] -----------------------------------------------
2025-09-26 11:41:56.247 [Debug] [ComfyUI-0/STDERR] [MultiGPU] Registration complete. Final mappings: DeviceSelectorMultiGPU, HunyuanVideoEmbeddingsAdapter, UNETLoaderMultiGPU, VAELoaderMultiGPU, CLIPLoaderMultiGPU, DualCLIPLoaderMultiGPU, TripleCLIPLoaderMultiGPU, QuadrupleCLIPLoaderMultiGPU, CLIPVisionLoaderMultiGPU, CheckpointLoaderSimpleMultiGPU, ControlNetLoaderMultiGPU, DiffusersLoaderMultiGPU, DiffControlNetLoaderMultiGPU, UNETLoaderDisTorch2MultiGPU, VAELoaderDisTorch2MultiGPU, CLIPLoaderDisTorch2MultiGPU, DualCLIPLoaderDisTorch2MultiGPU, TripleCLIPLoaderDisTorch2MultiGPU, QuadrupleCLIPLoaderDisTorch2MultiGPU, CLIPVisionLoaderDisTorch2MultiGPU, CheckpointLoaderSimpleDisTorch2MultiGPU, ControlNetLoaderDisTorch2MultiGPU, DiffusersLoaderDisTorch2MultiGPU, DiffControlNetLoaderDisTorch2MultiGPU, UnetLoaderGGUFDisTorchMultiGPU, UnetLoaderGGUFAdvancedDisTorchMultiGPU, CLIPLoaderGGUFDisTorchMultiGPU, DualCLIPLoaderGGUFDisTorchMultiGPU, TripleCLIPLoaderGGUFDisTorchMultiGPU, QuadrupleCLIPLoaderGGUFDisTorchMultiGPU, UnetLoaderGGUFDisTorch2MultiGPU, UnetLoaderGGUFAdvancedDisTorch2MultiGPU, CLIPLoaderGGUFDisTorch2MultiGPU, DualCLIPLoaderGGUFDisTorch2MultiGPU, TripleCLIPLoaderGGUFDisTorch2MultiGPU, QuadrupleCLIPLoaderGGUFDisTorch2MultiGPU, UnetLoaderGGUFMultiGPU, UnetLoaderGGUFAdvancedMultiGPU, CLIPLoaderGGUFMultiGPU, DualCLIPLoaderGGUFMultiGPU, TripleCLIPLoaderGGUFMultiGPU, QuadrupleCLIPLoaderGGUFMultiGPU, WanVideoModelLoaderMultiGPU, WanVideoModelLoaderMultiGPU_2, WanVideoVAELoaderMultiGPU, LoadWanVideoT5TextEncoderMultiGPU, LoadWanVideoClipTextEncoderMultiGPU, WanVideoTextEncodeMultiGPU, WanVideoBlockSwapMultiGPU, WanVideoSamplerMultiGPU
2025-09-26 11:41:56.817 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:56.817 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:56.818 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:57.819 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:57.819 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:57.820 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:58.820 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:58.820 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:58.821 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:41:59.200 [Debug] [ComfyUI-0/STDERR] /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/venv/lib/python3.11/site-packages/albumentations/check_version.py:147: UserWarning: Error fetching version info <urlopen error timed out>
2025-09-26 11:41:59.200 [Debug] [ComfyUI-0/STDERR]   data = fetch_version_info()
2025-09-26 11:41:59.821 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:41:59.821 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:41:59.822 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:00.013 [Debug] [ComfyUI-0/STDOUT] 
2025-09-26 11:42:00.013 [Debug] [ComfyUI-0/STDOUT] [ReActor] - STATUS - Running v0.6.0-a1 in ComfyUI
2025-09-26 11:42:00.822 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:00.822 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:00.823 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:01.300 [Debug] [ComfyUI-0/STDOUT] Torch version: 2.7.1+cu128
2025-09-26 11:42:01.823 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:01.823 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:01.824 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:02.824 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:02.824 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:02.824 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:03.825 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:03.825 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:03.826 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:04.453 [Debug] [ComfyUI-0/STDERR] ======================================== ComfyUI-nunchaku Initialization ========================================
2025-09-26 11:42:04.470 [Debug] [ComfyUI-0/STDERR] Nunchaku version: 1.0.0
2025-09-26 11:42:04.473 [Debug] [ComfyUI-0/STDERR] ComfyUI-nunchaku version: 1.0.1
2025-09-26 11:42:04.826 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:04.826 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:04.827 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:05.826 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:42:05.826 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:05.826 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:05.827 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:06.828 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:06.828 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:06.829 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:07.830 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:07.830 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:07.831 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:08.831 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:08.831 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:08.832 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:09.832 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:09.832 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:09.833 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:10.833 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:10.833 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:10.834 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:11.834 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:11.834 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:11.836 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:12.836 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:12.836 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:12.837 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:13.836 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:13.836 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:13.837 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:14.838 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:14.838 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:14.839 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:15.839 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:42:15.839 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:15.839 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:15.840 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:16.840 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:16.840 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:16.841 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:17.841 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:17.841 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:17.842 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:18.843 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:18.843 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:18.844 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:19.843 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:19.843 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:19.845 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:20.845 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:20.845 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:20.846 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:21.847 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:21.847 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:21.848 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:22.848 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:22.848 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:22.849 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:23.849 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:23.849 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:23.850 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:24.850 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:24.850 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:24.851 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:25.850 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-09-26 11:42:25.850 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:25.850 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:25.851 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:26.852 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:26.852 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:26.853 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:26.968 [Debug] [ComfyUI-0/STDOUT] 'nunchaku_versions.json' not found. Node will start in minimal mode.
2025-09-26 11:42:26.968 [Debug] [ComfyUI-0/STDERR] =================================================================================================================
2025-09-26 11:42:27.201 [Debug] [ComfyUI-0/STDERR] 
2025-09-26 11:42:27.201 [Debug] [ComfyUI-0/STDERR] Import times for custom nodes:
2025-09-26 11:42:27.201 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/websocket_image_save.py
2025-09-26 11:42:27.201 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/ComfyUI_SigmoidOffsetScheduler
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/ComfyUI-Better-Dimensions
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-vrgamedevgirl
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyExtra
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-adaptive-guidance
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/ComfyUI-GGUF
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_ipadapter_plus
2025-09-26 11:42:27.202 [Debug] [ComfyUI-0/STDERR]    0.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-get-meta
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.1 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-inpaint-nodes
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.1 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-depthanythingv2
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.1 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-multigpu
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.2 seconds: /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyCommon
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.2 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-kjnodes
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.2 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/rgthree-comfy
2025-09-26 11:42:27.203 [Debug] [ComfyUI-0/STDERR]    0.3 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_essentials
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    0.5 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-videohelpersuite
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    1.0 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-manager
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    1.4 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-impact-pack
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    1.5 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-logicutils
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    1.7 seconds: /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/DLNodes/ComfyUI-TeaCache
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    2.3 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui-tooling-nodes
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    2.4 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/RES4LYF
2025-09-26 11:42:27.204 [Debug] [ComfyUI-0/STDERR]    2.4 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/comfyui_controlnet_aux
2025-09-26 11:42:27.205 [Debug] [ComfyUI-0/STDERR]    4.1 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/ComfyUI-Crystools
2025-09-26 11:42:27.205 [Debug] [ComfyUI-0/STDERR]    6.4 seconds: /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/DLNodes/ComfyUI-ReActor
2025-09-26 11:42:27.205 [Debug] [ComfyUI-0/STDERR]   22.5 seconds: /config/07-SwarmUI/SwarmUI/src/BuiltinExtensions/ComfyUIBackend/DLNodes/ComfyUI-nunchaku
2025-09-26 11:42:27.205 [Debug] [ComfyUI-0/STDERR]   31.3 seconds: /config/07-SwarmUI/SwarmUI/dlbackend/ComfyUI/custom_nodes/ComfyUI-WanVideoWrapper
2025-09-26 11:42:27.205 [Debug] [ComfyUI-0/STDERR] 
2025-09-26 11:42:27.854 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:27.854 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:27.855 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:28.855 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:28.855 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:28.856 [Verbose] Comfy backend 0 failed to load value set, but ignoring error: HttpRequestException: Connection refused (localhost:7821)
2025-09-26 11:42:28.960 [Debug] [ComfyUI-0/STDERR] Context impl SQLiteImpl.
2025-09-26 11:42:28.960 [Debug] [ComfyUI-0/STDERR] Will assume non-transactional DDL.
2025-09-26 11:42:28.965 [Debug] [ComfyUI-0/STDERR] No target revision found.
2025-09-26 11:42:29.435 [Debug] [ComfyUI-0/STDERR] Starting server
2025-09-26 11:42:29.435 [Debug] [ComfyUI-0/STDERR] 
2025-09-26 11:42:29.436 [Debug] [ComfyUI-0/STDERR] To see the GUI go to: http://127.0.0.1:7821
2025-09-26 11:42:29.856 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-09-26 11:42:29.856 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:31.586 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 10/98
2025-09-26 11:42:31.770 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-09-26 11:42:31.770 [Verbose] Comfy backend 0 loaded value set, parsing...
2025-09-26 11:42:31.773 [Verbose] Comfy backend 0 using model folder format: forward slash / as no backslash was found
2025-09-26 11:42:31.781 [Verbose] Comfy backend 0 loaded value set and parsed.
2025-09-26 11:42:31.781 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-09-26 11:42:31.781 [Debug] [Load ComfyUI Self-Starting #0] Done! Started!
2025-09-26 11:42:31.781 [Init] Self-Start ComfyUI-0 on port 7821 started.
2025-09-26 11:42:31.781 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 self-start port 7821 loop ending (should now be alive)
2025-09-26 11:42:32.819 [Verbose] User local triggered a strong data refresh
2025-09-26 11:42:32.826 [Verbose] Comfy backend 0 loading value set...
2025-09-26 11:42:34.573 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-09-26 11:42:34.573 [Verbose] Comfy backend 0 loaded value set, parsing...
2025-09-26 11:42:34.574 [Verbose] Comfy backend 0 using model folder format: forward slash / as no backslash was found
2025-09-26 11:42:34.575 [Verbose] Comfy backend 0 loaded value set and parsed.
2025-09-26 11:42:34.575 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-09-26 11:42:34.580 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlpony
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sd15
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxl
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlhyper
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxllightning
2025-09-26 11:42:34.581 [Verbose] [Model Scan] Add all Stable-Diffusion from folder sdxlturbo
2025-09-26 11:42:34.582 [Verbose] [Model Scan] Add all Stable-Diffusion from folder illustrious
2025-09-26 11:42:34.582 [Verbose] [Model Scan] Add all Stable-Diffusion from folder noobai
2025-09-26 11:42:34.582 [Verbose] [Model Scan] Add all Stable-Diffusion from folder chroma
2025-09-26 11:42:34.582 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_kontext
2025-09-26 11:42:34.583 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_krea
2025-09-26 11:42:34.583 [Verbose] [Model Scan] Add all Stable-Diffusion from folder qwen
2025-09-26 11:42:34.583 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux
2025-09-26 11:42:34.590 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:42:34.592 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_kontext
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder wan
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder chroma
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder qwen
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder hunyuan_image
2025-09-26 11:42:34.593 [Verbose] [Model Scan] Add all Stable-Diffusion from folder flux_krea
2025-09-26 11:42:34.598 [Verbose] [Model Scan] Add all Stable-Diffusion from folder 
2025-09-26 11:42:34.599 [Debug] Have 34 Stable-Diffusion models.
2025-09-26 11:42:34.600 [Verbose] [Model Scan] Add all VAE from folder 
2025-09-26 11:42:34.602 [Verbose] [Model Scan] Add all VAE from folder Wan
2025-09-26 11:42:34.602 [Verbose] [Model Scan] Add all VAE from folder QwenImage
2025-09-26 11:42:34.602 [Verbose] [Model Scan] Add all VAE from folder HunyuanVideo
2025-09-26 11:42:34.602 [Verbose] [Model Scan] Add all VAE from folder HunyuanImage
2025-09-26 11:42:34.608 [Debug] Have 8 VAE models.
2025-09-26 11:42:34.609 [Verbose] [Model Scan] Add all LoRA from folder 
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder sdxlpony
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder sdxl
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder illustrious
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder chroma
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder sd15
2025-09-26 11:42:34.610 [Verbose] [Model Scan] Add all LoRA from folder wan
2025-09-26 11:42:34.611 [Verbose] [Model Scan] Add all LoRA from folder flux
2025-09-26 11:42:34.611 [Verbose] [Model Scan] Add all LoRA from folder flux_kontext
2025-09-26 11:42:34.611 [Verbose] [Model Scan] Add all LoRA from folder qwen
2025-09-26 11:42:34.611 [Verbose] [Model Scan] Add all LoRA from folder hunyuan
2025-09-26 11:42:34.611 [Verbose] [Model Scan] Add all LoRA from folder HunyuanVideo
2025-09-26 11:42:35.527 [Debug] Have 666 LoRA models.
2025-09-26 11:42:35.528 [Verbose] [Model Scan] Add all Embedding from folder 
2025-09-26 11:42:35.530 [Verbose] [Model Scan] Add all Embedding from folder illustrious
2025-09-26 11:42:35.530 [Verbose] [Model Scan] Add all Embedding from folder sdxlpony
2025-09-26 11:42:35.539 [Debug] Have 8 Embedding models.
2025-09-26 11:42:35.540 [Verbose] [Model Scan] Add all ControlNet from folder 
2025-09-26 11:42:35.546 [Debug] Have 13 ControlNet models.
2025-09-26 11:42:35.547 [Verbose] [Model Scan] Add all Clip from folder 
2025-09-26 11:42:35.551 [Debug] Have 11 Clip models.
2025-09-26 11:42:35.552 [Verbose] [Model Scan] Add all ClipVision from folder 
2025-09-26 11:42:35.555 [Debug] Have 4 ClipVision models.
2025-09-26 11:42:35.774 [Debug] Data refreshed!
2025-09-26 11:43:07.417 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 15/98
2025-09-26 11:43:43.810 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 20/98
2025-09-26 11:44:19.600 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 25/98
2025-09-26 11:44:47.383 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 30/98
2025-09-26 11:44:59.112 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 35/98
2025-09-26 11:45:02.868 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 40/98
2025-09-26 11:45:06.708 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 45/98
2025-09-26 11:45:10.471 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 50/98
2025-09-26 11:45:14.305 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 55/98
2025-09-26 11:45:42.131 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 60/98
2025-09-26 11:45:53.961 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 65/98
2025-09-26 11:45:57.954 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 70/98
2025-09-26 11:46:01.926 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 75/98
2025-09-26 11:46:06.999 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 80/98
2025-09-26 11:46:11.162 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 85/98
2025-09-26 11:46:15.655 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 90/98
2025-09-26 11:46:28.213 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data: 95/98
2025-09-26 11:46:30.980 [Debug] [ComfyUI-0/STDOUT] FETCH ComfyRegistry Data [DONE]
2025-09-26 11:46:31.229 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes
2025-09-26 11:46:31.572 [Debug] [ComfyUI-0/STDOUT] FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json [DONE]
2025-09-26 11:46:31.660 [Debug] [ComfyUI-0/STDERR] [ComfyUI-Manager] All startup tasks have been completed.
2025-09-26 12:18:11.248 [Info] User local is submitted logs above level Verbose to pastebin...