Browse Source

removing try block in getting gun info

debug-remote-ip
Alexander Strizhakov 4 years ago
parent
commit
eb324467d9
No known key found for this signature in database GPG Key ID: 22896A53AEF1381
1 changed files with 8 additions and 13 deletions
  1. +8
    -13
      lib/pleroma/pool/connections.ex

+ 8
- 13
lib/pleroma/pool/connections.ex View File

@@ -285,20 +285,15 @@ 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 =
case :inet.ntoa(origin_host) do
{:error, :einval} -> origin_host
ip -> ip
end
%{origin_host: origin_host, origin_scheme: scheme, origin_port: port} = Gun.info(pid)

"#{scheme}:#{host}:#{port}"
rescue
_ -> :error_gun_info
end
host =
case :inet.ntoa(origin_host) do
{:error, :einval} -> origin_host
ip -> ip
end

"#{scheme}:#{host}:#{port}"
end

defp find_conn(conns, conn_pid) do


Loading…
Cancel
Save