mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-24 17:50:20 -06:00
Adding maximum session idle time in the config.py file
This commit is contained in:
parent
7f8ebb01d8
commit
a0cfddffdf
@ -84,8 +84,6 @@ LOG_FILE = 'pgadmin4.log'
|
||||
# Server settings
|
||||
##########################################################################
|
||||
|
||||
PG_DEFAULT_DRIVER = 'psycopg2'
|
||||
|
||||
# The server mode determines whether or not we're running on a web server
|
||||
# requiring user authentication, or desktop mode which uses an automatic
|
||||
# default login.
|
||||
@ -122,6 +120,18 @@ SECURITY_PASSWORD_HASH = 'pbkdf2_sha512'
|
||||
# Should HTML be minified on the fly when not in debug mode?
|
||||
MINIFY_HTML = True
|
||||
|
||||
|
||||
##########################################################################
|
||||
# Server Connection Driver Settings
|
||||
##########################################################################
|
||||
|
||||
# The default driver used for making connection with PostgreSQL
|
||||
PG_DEFAULT_DRIVER = 'psycopg2'
|
||||
|
||||
# Maximum allowed idle time in minutes before which releasing the connection
|
||||
# for the particular session. (in minutes)
|
||||
MAX_SESSION_IDLE_TIME = 60
|
||||
|
||||
##########################################################################
|
||||
# User account and settings storage
|
||||
##########################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user