2016-03-25 13:20:31 +00:00
|
|
|
---
|
|
|
|
:concurrency: 5
|
2017-05-05 01:23:01 +01:00
|
|
|
:queues:
|
|
|
|
- default
|
|
|
|
- push
|
|
|
|
- pull
|
|
|
|
- mailers
|
|
|
|
:schedule:
|
|
|
|
subscriptions_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(4..6) %> * * *'
|
2017-05-05 01:23:01 +01:00
|
|
|
class: Scheduler::SubscriptionsScheduler
|
2017-05-20 18:42:58 +01:00
|
|
|
media_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(3..5) %> * * *'
|
2017-05-20 18:42:58 +01:00
|
|
|
class: Scheduler::MediaCleanupScheduler
|
|
|
|
feed_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(0..2) %> * * *'
|
2017-05-20 18:42:58 +01:00
|
|
|
class: Scheduler::FeedCleanupScheduler
|
2017-06-25 22:51:32 +01:00
|
|
|
doorkeeper_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(0..2) %> * * 0'
|
2017-06-25 22:51:32 +01:00
|
|
|
class: Scheduler::DoorkeeperCleanupScheduler
|
2017-07-24 15:17:55 +01:00
|
|
|
user_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(4..6) %> * * *'
|
2017-07-24 15:17:55 +01:00
|
|
|
class: Scheduler::UserCleanupScheduler
|
2017-08-21 21:56:33 +01:00
|
|
|
subscriptions_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(1..3) %> * * 0'
|
2017-08-21 21:56:33 +01:00
|
|
|
class: Scheduler::SubscriptionsCleanupScheduler
|
2017-09-14 21:26:38 +01:00
|
|
|
ip_cleanup_scheduler:
|
2017-09-17 10:58:20 +01:00
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(3..5) %> * * *'
|
2017-09-14 21:26:38 +01:00
|
|
|
class: Scheduler::IpCleanupScheduler
|
2018-01-15 03:34:28 +00:00
|
|
|
email_scheduler:
|
|
|
|
cron: '0 10 * * 2'
|
|
|
|
class: Scheduler::EmailScheduler
|
2018-02-21 22:21:32 +00:00
|
|
|
backup_cleanup_scheduler:
|
|
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(3..5) %> * * *'
|
|
|
|
class: Scheduler::BackupCleanupScheduler
|