Merge branch 'gun-pool-retry' into 'develop'

Gun connection pooling: rename variable for clarity

See merge request pleroma/pleroma!4078
This commit is contained in:
feld 2024-02-23 16:44:53 +00:00
commit 6144cb43a8
2 changed files with 2 additions and 2 deletions

View File

View File

@ -18,10 +18,10 @@ defmodule Pleroma.Gun.ConnectionPool.WorkerSupervisor do
)
end
def start_worker(opts, retry \\ false) do
def start_worker(opts, last_attempt \\ false) do
case DynamicSupervisor.start_child(__MODULE__, {Pleroma.Gun.ConnectionPool.Worker, opts}) do
{:error, :max_children} ->
funs = [fn -> retry end, fn -> match?(:error, free_pool()) end]
funs = [fn -> last_attempt end, fn -> match?(:error, free_pool()) end]
if Enum.any?(funs, fn fun -> fun.() end) do
:telemetry.execute([:pleroma, :connection_pool, :provision_failure], %{opts: opts})