Skip to content

Commit 56a72fa

Browse files
committed
disable pooling by default until we can resolve all locking errors
1 parent cfd4035 commit 56a72fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

llms/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from queue import Empty, Queue
66
from threading import Event, Thread
77

8-
POOL = os.getenv("LLMS_POOL", "1") == "1"
8+
POOL = os.getenv("LLMS_POOL", "0") == "1"
99

1010

1111
def create_reader_connection(db_path):

0 commit comments

Comments
 (0)