diff options
author | rinpatch <rinpatch@sdf.org> | 2020-09-04 22:10:40 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-09-04 22:10:40 +0300 |
commit | 10da13c71343623a5e52beebdc6abc1f400bc40d (patch) | |
tree | cff977adf698a197639073a7c2ad92848aa5460b /mix.exs | |
parent | 2b04cdf407c9ce4134a0fe448b7f8dff7f6ff57f (diff) | |
download | pleroma-10da13c71343623a5e52beebdc6abc1f400bc40d.tar.gz |
ConnectionPool middleware: Fix connection leak on ReverseProxy redirects
Requires a patched Tesla due to upstream not saving opts between
redirects, patch submitted at https://github.com/teamon/tesla/pull/414
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -134,7 +134,9 @@ defmodule Pleroma.Mixfile do {:cachex, "~> 3.2"}, {:poison, "~> 3.0", override: true}, {:tesla, - github: "teamon/tesla", ref: "af3707078b10793f6a534938e56b963aff82fe3c", override: true}, + git: "https://git.pleroma.social/pleroma/elixir-libraries/tesla.git", + ref: "3a2789d8535f7b520ebbadc4494227e5ba0e5365", + override: true}, {:castore, "~> 0.1"}, {:cowlib, "~> 2.9", override: true}, {:gun, |