X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fhttp%2Fconnection.ex;h=c0173465ab741d9bf39b41750865cdbe7f30c3e7;hb=297596ce4800bed3e6b85721ec384a2a0a0a983f;hp=12667b6634a8699bb5ca5e18752b25a4dc8c1843;hpb=3ce16e5a56be01686a03f40931f666ac164df6e8;p=akkoma diff --git a/lib/pleroma/http/connection.ex b/lib/pleroma/http/connection.ex index 12667b663..c0173465a 100644 --- a/lib/pleroma/http/connection.ex +++ b/lib/pleroma/http/connection.ex @@ -1,5 +1,19 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2019 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.HTTP.Connection do - @hackney_options [pool: :default] + @moduledoc """ + Connection for http-requests. + """ + + @hackney_options [ + connect_timeout: 2_000, + recv_timeout: 20_000, + follow_redirect: true, + pool: :federation + ] + @adapter Application.get_env(:tesla, :adapter) @doc """ Configure a client connection @@ -10,13 +24,17 @@ defmodule Pleroma.HTTP.Connection do """ @spec new(Keyword.t()) :: Tesla.Env.client() def new(opts \\ []) do - Tesla.client([], {Tesla.Adapter.Hackney, hackney_options(opts)}) + Tesla.client([], {@adapter, hackney_options(opts)}) end # fetch Hackney options # - defp hackney_options(opts \\ []) do + defp hackney_options(opts) do options = Keyword.get(opts, :adapter, []) - @hackney_options ++ options + adapter_options = Pleroma.Config.get([:http, :adapter], []) + + @hackney_options + |> Keyword.merge(adapter_options) + |> Keyword.merge(options) end end