Gun Connection Pool was not attempting to free a connection and retry once if the pool was full.

This commit is contained in:
Mark Felder 2024-02-22 14:07:46 -05:00
parent f0468697cd
commit ac55764599
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ defmodule Pleroma.Gun.ConnectionPool.WorkerSupervisor do
def start_worker(opts, retry \\ 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 -> retry 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})