From: William Pitcock Date: Fri, 8 Mar 2019 22:50:43 +0000 (+0000) Subject: http: connection: relax the timeouts a little X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=ba48bd901c3beabb6bcb5af7b8d4232965e0c618;p=akkoma http: connection: relax the timeouts a little --- diff --git a/lib/pleroma/http/connection.ex b/lib/pleroma/http/connection.ex index 926f892ba..1477c6dd6 100644 --- a/lib/pleroma/http/connection.ex +++ b/lib/pleroma/http/connection.ex @@ -8,8 +8,8 @@ defmodule Pleroma.HTTP.Connection do """ @hackney_options [ - connect_timeout: 1_000, - recv_timeout: 10_000, + connect_timeout: 2_000, + recv_timeout: 20_000, follow_redirect: true, pool: :federation ]