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

Enable PostgreSQL connection pooling

parent 0cbb34f9
No related branches found
No related tags found
1 merge request!345Enable PostgreSQL connection pooling
Pipeline #3320 failed
...@@ -172,6 +172,7 @@ DATABASES = { ...@@ -172,6 +172,7 @@ DATABASES = {
"HOST": _settings.get("database.host", "127.0.0.1"), "HOST": _settings.get("database.host", "127.0.0.1"),
"PORT": _settings.get("database.port", "5432"), "PORT": _settings.get("database.port", "5432"),
"ATOMIC_REQUESTS": True, "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