mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Merge branch 'master' into dev
This commit is contained in:
commit
7b833291b3
@ -1,3 +1,8 @@
|
|||||||
|
## 1.4.1
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
* add queue lock for refresh-checkpoints
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
### Features:
|
### Features:
|
||||||
|
@ -598,7 +598,8 @@ class Api:
|
|||||||
}
|
}
|
||||||
|
|
||||||
def refresh_checkpoints(self):
|
def refresh_checkpoints(self):
|
||||||
shared.refresh_checkpoints()
|
with self.queue_lock:
|
||||||
|
shared.refresh_checkpoints()
|
||||||
|
|
||||||
def create_embedding(self, args: dict):
|
def create_embedding(self, args: dict):
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user