From b2b84de10e1e80d56d9ac499686d8506118ddc53 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 12 May 2020 08:20:07 +0200 Subject: [PATCH] :bug: Revert db pool size. --- backend/src/uxbox/db.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/uxbox/db.clj b/backend/src/uxbox/db.clj index 3c8f12f16d..a32fd107ed 100644 --- a/backend/src/uxbox/db.clj +++ b/backend/src/uxbox/db.clj @@ -27,7 +27,7 @@ (assoc :password password) (str))] (log/info "creating connection pool with" dburi) - (pg/pool dburi {:system system :max-size 1}))) + (pg/pool dburi {:system system :max-size 8}))) (defstate pool :start (create-pool cfg/config system))