Gun Connection Pool was not attempting to free a connection and retry once if the pool was full.
This commit is contained in:
parent
f0468697cd
commit
ac55764599
|
@ -21,7 +21,7 @@ def init(_opts) do
|
||||||
def start_worker(opts, retry \\ false) do
|
def start_worker(opts, retry \\ false) do
|
||||||
case DynamicSupervisor.start_child(__MODULE__, {Pleroma.Gun.ConnectionPool.Worker, opts}) do
|
case DynamicSupervisor.start_child(__MODULE__, {Pleroma.Gun.ConnectionPool.Worker, opts}) do
|
||||||
{:error, :max_children} ->
|
{: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
|
if Enum.any?(funs, fn fun -> fun.() end) do
|
||||||
:telemetry.execute([:pleroma, :connection_pool, :provision_failure], %{opts: opts})
|
:telemetry.execute([:pleroma, :connection_pool, :provision_failure], %{opts: opts})
|
||||||
|
|
Loading…
Reference in New Issue