Skip to content

Commit 7fc4250

Browse files
committed
remove max_size
1 parent 7543472 commit 7fc4250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgrestq/task_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def connect(self) -> None:
8383
"""
8484
# if self.conn is None or self.conn.closed:
8585
# self.conn = self.get_connection()
86-
self.pool = ConnectionPool(self._dsn, open=True, min_size=1, max_size=1)
86+
self.pool = ConnectionPool(self._dsn, open=True, min_size=1)
8787
# This will block the use of the pool until min_size connections
8888
# have been acquired
8989
self.pool.wait()

0 commit comments

Comments
 (0)