diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-14 14:38:13 +0300 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-08-20 12:41:10 +0300 |
commit | 888ac63df42075f771161a607be1de873ca7d666 (patch) | |
tree | aed69ccd74c720a45c9a205b5c5a3324aacc7e07 | |
parent | c0916b66f8f4d9e2917e11d7d24fd5931507a35c (diff) | |
download | pleroma-888ac63df42075f771161a607be1de873ca7d666.tar.gz |
some debug
-rw-r--r-- | lib/pleroma/http/http.ex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/pleroma/http/http.ex b/lib/pleroma/http/http.ex index 3ad891d11..a6c325017 100644 --- a/lib/pleroma/http/http.ex +++ b/lib/pleroma/http/http.ex @@ -41,6 +41,8 @@ defmodule Pleroma.HTTP do options end + IO.inspect(options) + params = Keyword.get(options, :params, []) %{} @@ -62,7 +64,7 @@ defmodule Pleroma.HTTP do end defp get_conn_for_gun(url, options) do - case Pleroma.Gun.Connections.get_conn(url) do + case Pleroma.Gun.Connections.try_to_get_gun_conn(url) do nil -> options |