aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlex S <alex.strizhakov@gmail.com>2019-08-14 14:34:49 +0300
committerAlex S <alex.strizhakov@gmail.com>2019-08-20 12:41:10 +0300
commitc0916b66f8f4d9e2917e11d7d24fd5931507a35c (patch)
tree113df9ffec8f2c3c26150291be7efda5172467b6 /lib
parent27d5aa7546a3263856581e972e7d79389007840f (diff)
downloadpleroma-c0916b66f8f4d9e2917e11d7d24fd5931507a35c.tar.gz
removing debug
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/gun/connections.ex5
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