http: connection: relax the timeouts a little

This commit is contained in:
William Pitcock 2019-03-08 22:50:43 +00:00
parent 19afd9f81f
commit ba48bd901c

View file

@ -8,8 +8,8 @@ defmodule Pleroma.HTTP.Connection do
""" """
@hackney_options [ @hackney_options [
connect_timeout: 1_000, connect_timeout: 2_000,
recv_timeout: 10_000, recv_timeout: 20_000,
follow_redirect: true, follow_redirect: true,
pool: :federation pool: :federation
] ]