mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-07 08:11:32 -08:00
Hotfix: call processing close to cleanup API generation calls
This commit is contained in:
parent
fab73f2e7d
commit
74d001bc68
1 changed files with 2 additions and 0 deletions
|
|
@ -335,6 +335,7 @@ class Api:
|
|||
p.script_args = tuple(script_args) # Need to pass args as tuple here
|
||||
processed = process_images(p)
|
||||
shared.state.end()
|
||||
p.close()
|
||||
|
||||
b64images = list(map(encode_pil_to_base64, processed.images)) if send_images else []
|
||||
|
||||
|
|
@ -392,6 +393,7 @@ class Api:
|
|||
p.script_args = tuple(script_args) # Need to pass args as tuple here
|
||||
processed = process_images(p)
|
||||
shared.state.end()
|
||||
p.close()
|
||||
|
||||
b64images = list(map(encode_pil_to_base64, processed.images)) if send_images else []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue