Removed file as requested
[akkoma] / lib / pleroma / http / connection.ex
index 12667b6634a8699bb5ca5e18752b25a4dc8c1843..699d80cd7a7d24f8f3782f2d81742276fc4eb4ac 100644 (file)
@@ -1,5 +1,18 @@
+# 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
-  @hackney_options [pool: :default]
+  @moduledoc """
+  Connection for http-requests.
+  """
+
+  @hackney_options [
+    timeout: 10000,
+    recv_timeout: 20000,
+    follow_redirect: true
+  ]
+  @adapter Application.get_env(:tesla, :adapter)
 
   @doc """
   Configure a client connection
@@ -10,12 +23,12 @@ 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
   end