forked from AkkomaGang/akkoma
remove try block from pool request
This commit is contained in:
parent
aaa879ce75
commit
24bf5c4e89
1 changed files with 5 additions and 17 deletions
|
@ -99,23 +99,11 @@ def request(%Client{} = client, request, %{pool_alive?: false}) do
|
|||
end
|
||||
|
||||
def request(%Client{} = client, request, %{pool: pool, timeout: timeout}) do
|
||||
try do
|
||||
:poolboy.transaction(
|
||||
pool,
|
||||
&Pleroma.Pool.Request.execute(&1, client, request, timeout),
|
||||
timeout
|
||||
)
|
||||
rescue
|
||||
e ->
|
||||
{:error, e}
|
||||
catch
|
||||
:exit, {:timeout, _} ->
|
||||
Logger.warn("Receive response from pool failed #{request[:url]}")
|
||||
{:error, :recv_pool_timeout}
|
||||
|
||||
:exit, e ->
|
||||
{:error, e}
|
||||
end
|
||||
:poolboy.transaction(
|
||||
pool,
|
||||
&Pleroma.Pool.Request.execute(&1, client, request, timeout),
|
||||
timeout
|
||||
)
|
||||
end
|
||||
|
||||
@spec request_try(Client.t(), keyword()) :: {:ok, Env.t()} | {:error, any()}
|
||||
|
|
Loading…
Reference in a new issue