From 5e15d64f07a40505ec094dcc7a60580456b039a6 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 28 Jul 2023 18:33:02 +0300 Subject: [PATCH] increase idle_in_transaction_session_timeout from 10s to 30s --- files/helpers/config/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index bbeb087d42..fcaac16251 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -1138,5 +1138,5 @@ class OrgyTypes: from sqlalchemy.engine.create import create_engine from sqlalchemy.orm import scoped_session, sessionmaker -engine = create_engine(environ.get("DATABASE_URL").strip(), connect_args={"options": "-c statement_timeout=5000 -c idle_in_transaction_session_timeout=10000"}) +engine = create_engine(environ.get("DATABASE_URL").strip(), connect_args={"options": "-c statement_timeout=5000 -c idle_in_transaction_session_timeout=30000"}) db_session = scoped_session(sessionmaker(bind=engine))