summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-04 19:05:08 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-07 19:59:17 +0300
commita83916fdacac7b11ca478ef9a61b32dd269c8fd2 (patch)
treed26cd05ea5759d231174aca8e6d453a606fbd6e7 /config/description.exs
parentc5434dbefc5e6a25ffb72debe8ed9e09d77bf885 (diff)
downloadpleroma-a83916fdacac7b11ca478ef9a61b32dd269c8fd2.tar.gz
pleroma-a83916fdacac7b11ca478ef9a61b32dd269c8fd2.zip
adapter options unification
not needed options deletion
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs8
1 files changed, 7 insertions, 1 deletions
diff --git a/config/description.exs b/config/description.exs
index 18c133f02..eac97ad64 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -3377,7 +3377,7 @@ config :pleroma, :config_description, [
suggestions: [250]
},
%{
- key: :await_up_timeout,
+ key: :connect_timeout,
type: :integer,
description: "Timeout while `gun` will wait until connection is up. Default: 5000ms.",
suggestions: [5000]
@@ -3415,6 +3415,12 @@ config :pleroma, :config_description, [
description:
"Maximum number of requests waiting for other requests to finish. After this number is reached, the pool will start returning errrors when a new request is made",
suggestions: [10]
+ },
+ %{
+ key: :recv_timeout,
+ type: :integer,
+ description: "Timeout for the pool while gun will wait for response",
+ suggestions: [10_000]
}
]
}