From 87cf91a0440d889a6c9afc3ededc47f9251711e2 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 18 Jan 2021 15:29:07 +0100 Subject: [PATCH] :bug: Increase idle_in_transaction timeout to 120s. --- backend/src/app/db.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/db.clj b/backend/src/app/db.clj index d50ddb8a2..004b837dc 100644 --- a/backend/src/app/db.clj +++ b/backend/src/app/db.clj @@ -77,7 +77,7 @@ (def initsql (str "SET statement_timeout = 10000;\n" - "SET idle_in_transaction_session_timeout = 30000;")) + "SET idle_in_transaction_session_timeout = 120000;")) (defn- create-datasource-config [{:keys [metrics] :as cfg}]