diff options
author | rinpatch <rinpatch@sdf.org> | 2020-08-01 12:16:06 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-08-01 12:18:56 +0300 |
commit | 87180ff817e4b9e3a3b90e7f0054b60b0d0c2c41 (patch) | |
tree | c6d6f5e756bd0c2efe3dd54dfa077c5bed232f9e /mix.exs | |
parent | f1f4b1863fec739dc854e0ab7b0f03644ec42100 (diff) | |
download | pleroma-87180ff817e4b9e3a3b90e7f0054b60b0d0c2c41.tar.gz |
Fix ConnecitonPool deadlocking after reaching the connection limit
The issue was with ConcurrentLimiter not decrementing counters on
overload. It was fixed in the latest commit, but concurrentlimiter
version wasn't updated in Pleroma for some reason.
Closes #1977
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ defmodule Pleroma.Mixfile do {:flake_id, "~> 0.1.0"}, {:concurrent_limiter, git: "https://git.pleroma.social/pleroma/elixir-libraries/concurrent_limiter.git", - ref: "8eee96c6ba39b9286ec44c51c52d9f2758951365"}, + ref: "55e92f84b4ed531bd487952a71040a9c69dc2807"}, {:remote_ip, git: "https://git.pleroma.social/pleroma/remote_ip.git", ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"}, |