Commit 7b833291 authored by AUTOMATIC1111's avatar AUTOMATIC1111

Merge branch 'master' into dev

parents 910d4f61 f865d3e1
## 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: ...@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment