start gun upload pool, if proxy_remote is enabled

This commit is contained in:
Alexander Strizhakov 2020-03-07 12:24:39 +03:00
parent 9f884a2639
commit 5f42ecc4c7
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 12 additions and 3 deletions

View File

@ -5,6 +5,7 @@
defmodule Pleroma.Pool.Supervisor do
use Supervisor
alias Pleroma.Config
alias Pleroma.Pool
def start_link(args) do
@ -17,8 +18,7 @@ defmodule Pleroma.Pool.Supervisor do
%{
id: Pool.Connections,
start:
{Pool.Connections, :start_link,
[{:gun_connections, Pleroma.Config.get([:connections_pool])}]}
{Pool.Connections, :start_link, [{:gun_connections, Config.get([:connections_pool])}]}
}
] ++ pools()
@ -26,7 +26,16 @@ defmodule Pleroma.Pool.Supervisor do
end
defp pools do
for {pool_name, pool_opts} <- Pleroma.Config.get([:pools]) do
pools = Config.get(:pools)
pools =
if Config.get([Pleroma.Upload, :proxy_remote]) == false do
Keyword.delete(pools, :upload)
else
pools
end
for {pool_name, pool_opts} <- pools do
pool_opts
|> Keyword.put(:id, {Pool, pool_name})
|> Keyword.put(:name, pool_name)