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