X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fhttp%2Fconnection.ex;h=c216cdcb11af5875d47e602b25fa327d07f88614;hb=ad5263c647aea65dbeb4c329825671895e0a8863;hp=7b11060b25d0b4366798a90e7fd507cd37ef92bc;hpb=6786ad3d983a37728654fccfa525498c77683cdc;p=akkoma diff --git a/lib/pleroma/http/connection.ex b/lib/pleroma/http/connection.ex index 7b11060b2..c216cdcb1 100644 --- a/lib/pleroma/http/connection.ex +++ b/lib/pleroma/http/connection.ex @@ -1,13 +1,17 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2019 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.HTTP.Connection do @moduledoc """ Connection for http-requests. """ @hackney_options [ - pool: :default, - timeout: 10000, - recv_timeout: 20000, - follow_redirect: true + connect_timeout: 10_000, + recv_timeout: 20_000, + follow_redirect: true, + pool: :federation ] @adapter Application.get_env(:tesla, :adapter) @@ -27,6 +31,12 @@ defmodule Pleroma.HTTP.Connection do # defp hackney_options(opts) do options = Keyword.get(opts, :adapter, []) - @hackney_options ++ options + adapter_options = Pleroma.Config.get([:http, :adapter], []) + proxy_url = Pleroma.Config.get([:http, :proxy_url], nil) + + @hackney_options + |> Keyword.merge(adapter_options) + |> Keyword.merge(options) + |> Keyword.merge(proxy: proxy_url) end end