diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-14 14:34:49 +0300 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-08-20 12:41:10 +0300 |
commit | c0916b66f8f4d9e2917e11d7d24fd5931507a35c (patch) | |
tree | 113df9ffec8f2c3c26150291be7efda5172467b6 /lib | |
parent | 27d5aa7546a3263856581e972e7d79389007840f (diff) | |
download | pleroma-c0916b66f8f4d9e2917e11d7d24fd5931507a35c.tar.gz |
removing debug
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/gun/connections.ex | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/pleroma/gun/connections.ex b/lib/pleroma/gun/connections.ex index 6fcf4332a..e06cad276 100644 --- a/lib/pleroma/gun/connections.ex +++ b/lib/pleroma/gun/connections.ex @@ -69,10 +69,6 @@ defmodule Pleroma.Gun.Connections do def handle_call({:conn, %{opts: opts, uri: uri}}, from, state) do key = compose_key(uri) - IO.inspect(state) - - IO.inspect(key) - case state.conns[key] do %{conn: conn, state: conn_state} when conn_state == :up -> {:reply, conn, state} @@ -91,7 +87,6 @@ defmodule Pleroma.Gun.Connections do protocol: String.to_atom(uri.scheme) }) - IO.inspect(state) {:noreply, state} end end |