diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-07-24 12:05:42 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-07-24 12:05:42 -0500 |
commit | 9be66682369f1aa3c221d411073c20e10b5a3ac1 (patch) | |
tree | 188cf107eb15dd135f9e308ac3486befedf9fb30 | |
parent | 51627a10e5d815d7a5edc277c974d3bd463273be (diff) | |
download | pleroma-9be66682369f1aa3c221d411073c20e10b5a3ac1.tar.gz |
Fix mix tasks that make HTTP calls by starting the Gun connection pool
-rw-r--r-- | lib/mix/pleroma.ex | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/lib/mix/pleroma.ex b/lib/mix/pleroma.ex index 9f0bf6ecb..c2b607fb3 100644 --- a/lib/mix/pleroma.ex +++ b/lib/mix/pleroma.ex @@ -24,8 +24,10 @@ defmodule Mix.Pleroma do Application.put_env(:logger, :console, level: :debug) end + adapter = Application.get_env(:tesla, :adapter) + apps = - if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Gun do + if adapter == Tesla.Adapter.Gun do [:gun | @apps] else [:hackney | @apps] @@ -33,11 +35,13 @@ defmodule Mix.Pleroma do Enum.each(apps, &Application.ensure_all_started/1) - children = [ - Pleroma.Repo, - {Pleroma.Config.TransferTask, false}, - Pleroma.Web.Endpoint - ] + children = + [ + Pleroma.Repo, + {Pleroma.Config.TransferTask, false}, + Pleroma.Web.Endpoint + ] ++ + http_children(adapter) cachex_children = Enum.map(@cachex_children, &Pleroma.Application.build_cachex(&1, [])) @@ -115,4 +119,11 @@ defmodule Mix.Pleroma do def escape_sh_path(path) do ~S(') <> String.replace(path, ~S('), ~S(\')) <> ~S(') end + + defp http_children(Tesla.Adapter.Gun) do + Pleroma.Gun.ConnectionPool.children() ++ + [{Task, &Pleroma.HTTP.AdapterHelper.Gun.limiter_setup/0}] + end + + defp http_children(_), do: [] end |