Skip to content
Snippets Groups Projects
Commit 19afd9f8 authored by kaniini's avatar kaniini
Browse files

http: rework connection timeouts to match hackney docs, enforce 1 second max TCP connection timeout

parent 773f532b
Branches
No related tags found
No related merge requests found
......@@ -8,8 +8,8 @@ defmodule Pleroma.HTTP.Connection do
"""
@hackney_options [
timeout: 10000,
recv_timeout: 20000,
connect_timeout: 1_000,
recv_timeout: 10_000,
follow_redirect: true,
pool: :federation
]
......
......@@ -1452,7 +1452,6 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
url,
[],
adapter: [
timeout: timeout,
recv_timeout: timeout,
pool: :default
]
......
......@@ -5,7 +5,6 @@
defmodule Pleroma.Web.RelMe do
@hackney_options [
pool: :media,
timeout: 2_000,
recv_timeout: 2_000,
max_body: 2_000_000
]
......
......@@ -11,7 +11,6 @@ defmodule Pleroma.Web.RichMedia.Parser do
@hackney_options [
pool: :media,
timeout: 2_000,
recv_timeout: 2_000,
max_body: 2_000_000
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment