Increase Oban.Pruner max_age to 15 mins

This commit is contained in:
Mark Felder 2024-07-24 15:52:23 -04:00
parent 97d488aea3
commit 8c5a68a62e

View file

@ -580,6 +580,8 @@
],
email_blacklist: []
# The Pruner :max_age must be longer than Worker :unique
# value or it cannot enforce uniqueness.
config :pleroma, Oban,
repo: Pleroma.Repo,
log: false,
@ -593,7 +595,7 @@
search_indexing: [limit: 10, paused: true],
slow: 5
],
plugins: [Oban.Plugins.Pruner],
plugins: [{Oban.Plugins.Pruner, max_age: 900}],
crontab: [
{"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
{"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}