Expand "to" of delete activities
[akkoma] / lib / pleroma / http / connection.ex
index 7b11060b25d0b4366798a90e7fd507cd37ef92bc..b798eaa5ac63e54dc079b9ed20732f85d0a9600e 100644 (file)
@@ -1,13 +1,17 @@
+# 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 [
-    pool: :default,
     timeout: 10000,
     recv_timeout: 20000,
-    follow_redirect: true
+    follow_redirect: true,
+    pool: :federation
   ]
   @adapter Application.get_env(:tesla, :adapter)