Add BackupWorker

This commit is contained in:
Egor Kislitsyn 2020-09-02 21:45:22 +04:00
commit a0ad9bd734
No known key found for this signature in database
GPG key ID: 1B49CB15B71E7805
5 changed files with 48 additions and 7 deletions

View file

@ -551,6 +551,7 @@ config :pleroma, Oban,
queues: [
activity_expiration: 10,
token_expiration: 5,
backup: 1,
federator_incoming: 50,
federator_outgoing: 50,
ingestion_queue: 50,

View file

@ -2288,6 +2288,12 @@ config :pleroma, :config_description, [
description: "Activity expiration queue",
suggestions: [10]
},
%{
key: :backup,
type: :integer,
description: "Backup queue",
suggestions: [1]
},
%{
key: :attachments_cleanup,
type: :integer,