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

Merge branch '578-make-database-ssl-mode-configurable' into 'master'

Resolve "Make database ssl mode configurable"

Closes #578

See merge request !833
parents 513b584c fc04d3f8
No related branches found
No related tags found
1 merge request!833Resolve "Make database ssl mode configurable"
Pipeline #46220 canceled
......@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Added
~~~~~
* Allow configuration of database options
`2.3.1`_ – 2021-12-17
---------------------
......
......@@ -218,6 +218,7 @@ DATABASES = {
"HOST": _settings.get("database.host", "127.0.0.1"),
"PORT": _settings.get("database.port", "5432"),
"CONN_MAX_AGE": _settings.get("database.conn_max_age", None),
"OPTIONS": _settings.get("database.options", {}),
}
}
......
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