Skip to content

Commit b028acf

Browse files
committed
Fixed calls to non-existing Comfy functions (vanilla still using old Comfy)
1 parent a922734 commit b028acf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

modules/virtual_memory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def move_to_virtual_memory(model, comfy_unload=True):
7272
timer = time.time()
7373

7474
if comfy_unload:
75-
model_management.unload_model()
75+
model_management.cleanup_models()
7676

7777
virtual_memory_dict = getattr(model, 'virtual_memory_dict', None)
7878
if isinstance(virtual_memory_dict, dict):

update_log_mre.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### 2.0.19 MRE
22

33
* Fixed links to log files not working with customized outputs path.
4+
* Fixed calls to non-existing Comfy functions (vanilla still using old Comfy).
45

56
### 2.0.18 MRE
67

0 commit comments

Comments
 (0)