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

stable
Alexander Strizhakov 5 years ago
parent d30ff35d94
commit 614e3934f9

@ -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

Loading…
Cancel
Save