forked from AkkomaGang/akkoma
4aff4efa8d
* federation (ap, salmon) * media (rich media, media proxy) * upload (uploader proxy) Each "part" will stop fighting others ones -- a huge federation outbound could before make the media proxy fail to checkout a connection in time. splitted media and uploaded media for the good reason than an upload pool will have all connections to the same host (the uploader upstream). it also has a longer default retention period for connections.
36 lines
788 B
Elixir
36 lines
788 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.HTTP.Connection do
|
|
@moduledoc """
|
|
Connection for http-requests.
|
|
"""
|
|
|
|
@hackney_options [
|
|
timeout: 10000,
|
|
recv_timeout: 20000,
|
|
follow_redirect: true,
|
|
pool: :federation
|
|
]
|
|
@adapter Application.get_env(:tesla, :adapter)
|
|
|
|
@doc """
|
|
Configure a client connection
|
|
|
|
# Returns
|
|
|
|
Tesla.Env.client
|
|
"""
|
|
@spec new(Keyword.t()) :: Tesla.Env.client()
|
|
def new(opts \\ []) do
|
|
Tesla.client([], {@adapter, hackney_options(opts)})
|
|
end
|
|
|
|
# fetch Hackney options
|
|
#
|
|
defp hackney_options(opts) do
|
|
options = Keyword.get(opts, :adapter, [])
|
|
@hackney_options ++ options
|
|
end
|
|
end
|