summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-04 14:24:15 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-04 14:24:15 +0300
commit8bd2b6eb138ace3408a03c78ecc339fc35b19f10 (patch)
tree538eaaba24256f471e3c1d99c396e1686c2dd197 /mix.exs
parent2b04cdf407c9ce4134a0fe448b7f8dff7f6ff57f (diff)
temp hackney fix
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 4de0c78db..f734e4f61 100644
--- a/mix.exs
+++ b/mix.exs
@@ -195,7 +195,10 @@ defmodule Pleroma.Mixfile do
{:ex_machina, "~> 2.4", only: :test},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:mock, "~> 0.3.5", only: :test},
- {:excoveralls, "~> 0.13.1", only: :test},
+ # temporary downgrade for excoveralls, hackney and httpoison - until hackney max_connections bug will be fixed
+ {:excoveralls, "0.12.3", only: :test},
+ {:hackney, "1.15.2"},
+ {:httpoison, "1.6.2"},
{:mox, "~> 0.5", only: :test},
{:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}
] ++ oauth_deps()