diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-02-13 11:49:19 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-02-13 11:49:19 -0600 |
commit | aac7f30eb2883453c90208f40650c02d10e644fb (patch) | |
tree | 45cb9796a6668fc0a49b295d3fe0682bc3db31fc | |
parent | 1c52cf933f380b1c8877af14ed496b2566a2e7ca (diff) | |
download | pleroma-aac7f30eb2883453c90208f40650c02d10e644fb.tar.gz |
Add missing Oban job for attachments_cleanup
-rw-r--r-- | config/description.exs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 40e2a4415..9cfb4fb27 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1986,6 +1986,7 @@ config :pleroma, :config_description, [ "Background jobs queues (keys: queues, values: max numbers of concurrent jobs)", suggestions: [ activity_expiration: 10, + attachments_cleanup: 5, background: 5, federator_incoming: 50, federator_outgoing: 50, @@ -2002,6 +2003,12 @@ config :pleroma, :config_description, [ suggestions: [10] }, %{ + key: :attachments_cleanup, + type: :integer, + description: "Attachment deletion queue", + suggestions: [5] + }, + %{ key: :background, type: :integer, description: "Background queue", |