mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-13 03:01:12 +00:00
removing try block in getting gun info
This commit is contained in:
parent
b34bc669b9
commit
eb324467d9
|
@ -285,8 +285,6 @@ defmodule Pleroma.Pool.Connections do
|
|||
end
|
||||
|
||||
defp compose_key_gun_info(pid) do
|
||||
try do
|
||||
# sometimes :gun.info can raise MatchError, which lead to pool terminate
|
||||
%{origin_host: origin_host, origin_scheme: scheme, origin_port: port} = Gun.info(pid)
|
||||
|
||||
host =
|
||||
|
@ -296,9 +294,6 @@ defmodule Pleroma.Pool.Connections do
|
|||
end
|
||||
|
||||
"#{scheme}:#{host}:#{port}"
|
||||
rescue
|
||||
_ -> :error_gun_info
|
||||
end
|
||||
end
|
||||
|
||||
defp find_conn(conns, conn_pid) do
|
||||
|
|
Loading…
Reference in a new issue