diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-09-05 11:15:27 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-09-05 11:15:27 +0300 |
commit | de7e2ae0b5c296d0896f5d3738cba0fcddfe54f1 (patch) | |
tree | 7081eb974274c7571736aaa403c1b4a87ada3551 /mix.exs | |
parent | 473458b0fbecb05121b235f525aefcef34f0409e (diff) | |
download | pleroma-de7e2ae0b5c296d0896f5d3738cba0fcddfe54f1.tar.gz |
use override flag for hackney dependency
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -195,10 +195,9 @@ defmodule Pleroma.Mixfile do {:ex_machina, "~> 2.4", only: :test}, {:credo, "~> 1.4", only: [:dev, :test], runtime: false}, {:mock, "~> 0.3.5", only: :test}, - # temporary downgrade for excoveralls, hackney and httpoison - until hackney max_connections bug will be fixed + # temporary downgrade for excoveralls, hackney until hackney max_connections bug will be fixed {:excoveralls, "0.12.3", only: :test}, - {:hackney, "1.15.2"}, - {:httpoison, "1.6.2"}, + {:hackney, "1.15.2", override: true}, {:mox, "~> 0.5", only: :test}, {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test} ] ++ oauth_deps() |