Skip to content

Commit f542eb4

Browse files
committed
Updated Comfy
1 parent e65de8c commit f542eb4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def prepare_environment():
2323
xformers_package = os.environ.get('XFORMERS_PACKAGE', 'xformers==0.0.21')
2424

2525
comfy_repo = os.environ.get('COMFY_REPO', "https://github.com/comfyanonymous/ComfyUI")
26-
comfy_commit_hash = os.environ.get('COMFY_COMMIT_HASH', "9261587d8975bb0c3f929433345e9918bf659460")
26+
comfy_commit_hash = os.environ.get('COMFY_COMMIT_HASH', "07691e80c3bf9be16c629169e259105ca5327bf0")
2727

2828
print(f"Python {sys.version}")
2929
print(f"Fooocus version: {fooocus_version.version}")

modules/async_worker.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from PIL import Image, ImageOps
1111
from modules.resolutions import annotate_resolution_string, string_to_dimensions
1212
from modules.settings import default_settings
13-
from comfy.model_management import InterruptProcessingException
13+
from comfy.model_management import InterruptProcessingException, throw_exception_if_processing_interrupted
1414

1515

1616
buffer = []
@@ -197,6 +197,7 @@ def handler(task):
197197
all_steps = steps * image_number
198198

199199
def callback(step, x0, x, total_steps, y):
200+
throw_exception_if_processing_interrupted()
200201
done_steps = current_task_idx * steps + step
201202
outputs.append(['preview', (
202203
int(15.0 + 85.0 * float(done_steps) / float(all_steps)),

update_log_mre.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
### 1.0.51 MRE
2+
3+
* Updated Comfy.
4+
15
### 1.0.50 MRE
2-
* Renamed Raw Mode (enabled by default in vanilla) to Prompt Expansion (disabled by default in MRE)
6+
7+
* Renamed Raw Mode (enabled by default in vanilla) to Prompt Expansion (disabled by default in MRE).
38

49
### 1.0.45.1 MRE
510

0 commit comments

Comments
 (0)