summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2024-07-22 14:00:54 -0400
committerMark Felder <feld@feld.me>2024-07-23 10:30:57 -0400
commit187897874bddc27ef23606730e79522e3583ec43 (patch)
treeaa73f33e7c11a188c068c58f0e2afc4b216e8833 /config/description.exs
parente5cbbaf3f0385492580b27a624b936c1d74757a1 (diff)
downloadpleroma-187897874bddc27ef23606730e79522e3583ec43.tar.gz
pleroma-187897874bddc27ef23606730e79522e3583ec43.zip
Make backup timeout configurable
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs15
1 files changed, 7 insertions, 8 deletions
diff --git a/config/description.exs b/config/description.exs
index b7d86dc63..179eea3f7 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -3356,19 +3356,18 @@ config :pleroma, :config_description, [
suggestions: [7]
},
%{
- key: :process_wait_time,
- type: :integer,
- label: "Process Wait Time",
- description:
- "The amount of time to wait for backup to report progress, in milliseconds. If no progress is received from the backup job for that much time, terminate it and deem it failed.",
- suggestions: [30_000]
- },
- %{
key: :process_chunk_size,
type: :integer,
label: "Process Chunk Size",
description: "The number of activities to fetch in the backup job for each chunk.",
suggestions: [100]
+ },
+ %{
+ key: :timeout,
+ type: :integer,
+ label: "Timeout",
+ description: "The amount of time to wait for backup to complete in seconds.",
+ suggestions: [1_800]
}
]
},