http: enable keepalive / connection pooling (closes #336)

This commit is contained in:
William Pitcock 2018-10-26 03:06:42 +00:00
parent 2d957b985f
commit 7338368ad9

View file

@ -19,9 +19,10 @@ defmodule Pleroma.HTTP do
end
end
def process_request_options(options) do
defp process_request_options(options) do
config = Application.get_env(:pleroma, :http, [])
proxy = Keyword.get(config, :proxy_url, nil)
options = options ++ [hackney: [pool: :default]]
case proxy do
nil -> options