diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-14 16:31:13 +0300 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-08-18 22:34:14 +0000 |
commit | beab94d6898f8985e19e30dc24416d311c3f04c7 (patch) | |
tree | 0008a5de59ed6f0abeacc99a08e49365174e3e5a | |
parent | 0c68cf435725a252be54988dfb6a914e3276b766 (diff) | |
download | pleroma-beab94d6898f8985e19e30dc24416d311c3f04c7.tar.gz |
only http
-rw-r--r-- | lib/pleroma/http/connection.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/http/connection.ex b/lib/pleroma/http/connection.ex index 222a8b6aa..ef1c1cabd 100644 --- a/lib/pleroma/http/connection.ex +++ b/lib/pleroma/http/connection.ex @@ -9,7 +9,8 @@ defmodule Pleroma.HTTP.Connection do @options [ connect_timeout: 10_000, - timeout: 20_000 + timeout: 20_000, + protocols: [:http] ] @doc """ |