increase db timeout

pull/1/head
Tao Bror Bojlén 2019-08-07 12:41:30 +03:00
rodzic e4f98a2b2f
commit c01e324e91
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: C6EC7AAB905F9E6F
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed broken instance view on mobile devices.
- Increased database connection timeout - required as the database grows!
### Security

Wyświetl plik

@ -1,7 +1,8 @@
defmodule Backend.Repo do
use Ecto.Repo,
otp_app: :backend,
adapter: Ecto.Adapters.Postgres
adapter: Ecto.Adapters.Postgres,
timeout: 25_000
use Paginator