Compare commits

...

3 Commits

Author SHA1 Message Date
AUTOMATIC1111 f865d3e116 add changelog for 1.4.1 2023-07-11 06:23:52 +03:00
AUTOMATIC1111 8d0078b6ef Merge pull request #11718 from tangjicheng46/master
fix: add queue lock for refresh-checkpoints
2023-07-10 20:40:58 +03:00
tangjicheng 089a0022ae add queue lock for refresh-checkpoints 2023-07-10 23:10:14 +09:00
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
## 1.4.1
### Bug Fixes:
* add queue lock for refresh-checkpoints
## 1.4.0 ## 1.4.0
### Features: ### Features:
+1
View File
@@ -593,6 +593,7 @@ class Api:
} }
def refresh_checkpoints(self): def refresh_checkpoints(self):
with self.queue_lock:
shared.refresh_checkpoints() shared.refresh_checkpoints()
def create_embedding(self, args: dict): def create_embedding(self, args: dict):