diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index bbeb087d4..fcaac1625 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))