diff options
author | Mark Felder <feld@FreeBSD.org> | 2024-05-27 14:35:30 +0000 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-05-27 13:48:17 -0400 |
commit | 0847d9ebafa38007aeef0a6677588211994ab546 (patch) | |
tree | 734adb44836ae35245fd62375a1ab86765c65bb6 /config | |
parent | 6291bf22bdacd146ae1aa7546281a9fe0c745611 (diff) | |
download | pleroma-0847d9ebafa38007aeef0a6677588211994ab546.tar.gz pleroma-0847d9ebafa38007aeef0a6677588211994ab546.zip |
Oban queue simplification
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/config/config.exs b/config/config.exs index b93de52e1..b52021373 100644 --- a/config/config.exs +++ b/config/config.exs @@ -574,24 +574,14 @@ config :pleroma, Oban, log: false, queues: [ activity_expiration: 10, - token_expiration: 5, - filter_expiration: 1, - backup: 1, federator_incoming: 5, federator_outgoing: 5, ingestion_queue: 50, web_push: 50, - mailer: 10, transmogrifier: 20, - scheduled_activities: 10, - poll_notifications: 10, background: 5, - remote_fetcher: 2, - attachments_cleanup: 1, - new_users_digest: 1, - mute_expire: 5, search_indexing: [limit: 10, paused: true], - rich_media_expiration: 2 + slow: 1 ], plugins: [Oban.Plugins.Pruner], crontab: [ |