]> git.ipfire.org Git - pbs.git/commitdiff
database: Increase the maximum number of connections again
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 13 Sep 2023 15:41:10 +0000 (15:41 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 13 Sep 2023 15:41:10 +0000 (15:41 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/buildservice/database.py

index a1054fbe19c868122bb6e200da7020b48145b1fa..3eccc4d8abfe0ef719f82d7b671a1d73a7ac0679 100644 (file)
@@ -52,7 +52,7 @@ class Connection(object):
 
                        # Set limits for min/max connections in the pool
                        min_size=8,
-                       max_size=64,
+                       max_size=200,
 
                        # Give clients up to one minute to retrieve a connection
                        timeout=60,