diff options
author | rinpatch <rinpatch@sdf.org> | 2020-05-08 19:57:11 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-07-15 15:26:35 +0300 |
commit | 281ddd5e371c5698489774e703106bd7c3ccb56b (patch) | |
tree | 3f08b20be3ef83088d18b3a06e262ca7adb30690 | |
parent | 1b15cb066c612c72d106e7e7026819ea14e0ceab (diff) | |
download | pleroma-281ddd5e371c5698489774e703106bd7c3ccb56b.tar.gz |
Connection pool: fix connections being supervised by gun_sup
-rw-r--r-- | lib/pleroma/gun/api.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/gun/api.ex b/lib/pleroma/gun/api.ex index f51cd7db8..09be74392 100644 --- a/lib/pleroma/gun/api.ex +++ b/lib/pleroma/gun/api.ex @@ -19,7 +19,8 @@ defmodule Pleroma.Gun.API do :tls_opts, :tcp_opts, :socks_opts, - :ws_opts + :ws_opts, + :supervise ] @impl Gun |