logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 6144cb43a8f7def575010652640b6a5cc495569f
parent 00e828b1a07d8b825eba1b3503651a899400a281
Author: feld <feld@feld.me>
Date:   Fri, 23 Feb 2024 16:44:53 +0000

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

Gun connection pooling: rename variable for clarity

See merge request pleroma/pleroma!4078

Diffstat:

Achangelog.d/gun_pool3.skip0
Mlib/pleroma/gun/connection_pool/worker_supervisor.ex4++--
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/changelog.d/gun_pool3.skip b/changelog.d/gun_pool3.skip diff --git a/lib/pleroma/gun/connection_pool/worker_supervisor.ex b/lib/pleroma/gun/connection_pool/worker_supervisor.ex @@ -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})