Skip to content
Snippets Groups Projects
Commit b775350f authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'feature/connection_pooling' into 'master'

Enable PostgreSQL connection pooling

See merge request AlekSIS/official/AlekSIS!345
parents ad80080e bbc4e336
No related branches found
No related tags found
1 merge request!345Enable PostgreSQL connection pooling
Pipeline #3357 failed
......@@ -172,6 +172,7 @@ DATABASES = {
"HOST": _settings.get("database.host", "127.0.0.1"),
"PORT": _settings.get("database.port", "5432"),
"ATOMIC_REQUESTS": True,
"CONN_MAX_AGE": _settings.get("database.conn_max_age", None),
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment