diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-14 16:31:13 +0300 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-08-20 12:41:10 +0300 |
commit | e0b52ca086b3e3a7c9a4ed5ac3c812fd3a56c45b (patch) | |
tree | 32fca9f6304f24075f663430b01a686c29b1c3eb | |
parent | 43e5307d65874503125584a1110764ce9f2e7e51 (diff) | |
download | pleroma-e0b52ca086b3e3a7c9a4ed5ac3c812fd3a56c45b.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 """ |