diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-09-04 19:05:08 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-09-07 19:59:17 +0300 |
commit | a83916fdacac7b11ca478ef9a61b32dd269c8fd2 (patch) | |
tree | d26cd05ea5759d231174aca8e6d453a606fbd6e7 /config/config.exs | |
parent | c5434dbefc5e6a25ffb72debe8ed9e09d77bf885 (diff) | |
download | pleroma-a83916fdacac7b11ca478ef9a61b32dd269c8fd2.tar.gz pleroma-a83916fdacac7b11ca478ef9a61b32dd269c8fd2.zip |
adapter options unification
not needed options deletion
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.exs b/config/config.exs index d631c3962..2426fbd52 100644 --- a/config/config.exs +++ b/config/config.exs @@ -735,28 +735,28 @@ config :pleroma, :connections_pool, max_connections: 250, max_idle_time: 30_000, retry: 0, - await_up_timeout: 5_000 + connect_timeout: 5_000 config :pleroma, :pools, federation: [ size: 50, max_waiting: 10, - timeout: 10_000 + recv_timeout: 10_000 ], media: [ size: 50, max_waiting: 10, - timeout: 10_000 + recv_timeout: 10_000 ], upload: [ size: 25, max_waiting: 5, - timeout: 15_000 + recv_timeout: 15_000 ], default: [ size: 10, max_waiting: 2, - timeout: 5_000 + recv_timeout: 5_000 ] config :pleroma, :hackney_pools, |