increase db timeout
This commit is contained in:
parent
e4f98a2b2f
commit
c01e324e91
|
@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed broken instance view on mobile devices.
|
- Fixed broken instance view on mobile devices.
|
||||||
|
- Increased database connection timeout - required as the database grows!
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
defmodule Backend.Repo do
|
defmodule Backend.Repo do
|
||||||
use Ecto.Repo,
|
use Ecto.Repo,
|
||||||
otp_app: :backend,
|
otp_app: :backend,
|
||||||
adapter: Ecto.Adapters.Postgres
|
adapter: Ecto.Adapters.Postgres,
|
||||||
|
timeout: 25_000
|
||||||
|
|
||||||
use Paginator
|
use Paginator
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue