From: Michael Tremer Date: Sun, 17 Sep 2023 08:05:13 +0000 (+0000) Subject: database: Allow up to 1024 concurrent database connections X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=479d4bcc4608f777618d621d42d107e958845462;p=pbs.git database: Allow up to 1024 concurrent database connections Signed-off-by: Michael Tremer --- diff --git a/src/buildservice/database.py b/src/buildservice/database.py index 3eccc4d8..bd5b19f3 100644 --- a/src/buildservice/database.py +++ b/src/buildservice/database.py @@ -52,7 +52,7 @@ class Connection(object): # Set limits for min/max connections in the pool min_size=8, - max_size=200, + max_size=1024, # Give clients up to one minute to retrieve a connection timeout=60,