Apply suggestion to lib/pleroma/http/http.ex

This commit is contained in:
Alexander Strizhakov 2020-03-03 09:50:42 +00:00
parent d30ff35d94
commit 614e3934f9
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ defmodule Pleroma.HTTP do
client <- Tesla.client([Tesla.Middleware.FollowRedirects], tesla_adapter()),
pid <- Process.whereis(adapter_opts[:pool]) do
pool_alive? =
if tesla_adapter() == Tesla.Adapter.Gun do
if pid, do: Process.alive?(pid), else: false
if tesla_adapter() == Tesla.Adapter.Gun && pid do
Process.alive?(pid)
else
false
end