diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-19 05:59:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-19 05:59:32 +0000 |
commit | b945ba716b88af32dff853ecaad4f5a05c164ce8 (patch) | |
tree | 058a4da81ce77abc3ed3f9e100db2ad2f3b7b662 | |
parent | 2207ef363aa96977d0c75d846b348132f721087c (diff) | |
parent | a292d2c47f51fc71cc186709bdf3706f0944b7d6 (diff) | |
download | stable-diffusion-webui-gfx803-b945ba716b88af32dff853ecaad4f5a05c164ce8.tar.gz stable-diffusion-webui-gfx803-b945ba716b88af32dff853ecaad4f5a05c164ce8.tar.bz2 stable-diffusion-webui-gfx803-b945ba716b88af32dff853ecaad4f5a05c164ce8.zip |
Merge pull request #13977 from AUTOMATIC1111/hotfix-postprocessing-state-end
Hotfix: call shared.state.end() after postprocessing done
-rw-r--r-- | modules/postprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/postprocessing.py b/modules/postprocessing.py index cf04d38b..fd0c0cc9 100644 --- a/modules/postprocessing.py +++ b/modules/postprocessing.py @@ -78,7 +78,7 @@ def run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir, image_data.close()
devices.torch_gc()
-
+ shared.state.end()
return outputs, ui_common.plaintext_to_html(infotext), ''
|