2016-03-23 18:39:41 +01:00
|
|
|
subscription_expire_in_7_days:
|
|
|
|
cron: "0 0 * * *"
|
2022-03-09 14:33:50 +01:00
|
|
|
class: SubscriptionExpireWorker
|
2016-03-23 18:39:41 +01:00
|
|
|
queue: default
|
|
|
|
args: [7]
|
|
|
|
|
|
|
|
subscription_is_expired:
|
|
|
|
cron: "0 23 * * *"
|
2022-03-09 14:33:50 +01:00
|
|
|
class: SubscriptionExpireWorker
|
2016-03-23 18:39:41 +01:00
|
|
|
queue: default
|
|
|
|
args: [0]
|
|
|
|
|
|
|
|
generate_statistic:
|
|
|
|
cron: "0 1 * * *"
|
2022-03-09 14:33:50 +01:00
|
|
|
class: StatisticWorker
|
2016-03-23 18:39:41 +01:00
|
|
|
queue: default
|
2016-05-25 12:21:38 +02:00
|
|
|
|
2019-12-02 15:53:24 +01:00
|
|
|
i_calendar_import:
|
2020-02-26 16:04:40 +01:00
|
|
|
cron: "0 * * * *"
|
2022-03-09 14:33:50 +01:00
|
|
|
class: ICalendarImportWorker
|
2019-12-02 15:53:24 +01:00
|
|
|
queue: default
|
|
|
|
|
2016-08-17 17:39:12 +02:00
|
|
|
reservation_reminder:
|
|
|
|
cron: "1 * * * *"
|
2022-03-09 14:33:50 +01:00
|
|
|
class: ReservationReminderWorker
|
2016-08-17 17:39:12 +02:00
|
|
|
queue: default
|
|
|
|
|
2019-03-18 14:33:30 +01:00
|
|
|
close_period_reminder_worker:
|
|
|
|
cron: "0 12 * * 1" # every monday at 12pm
|
2022-03-09 14:33:50 +01:00
|
|
|
class: ClosePeriodReminderWorker
|
2019-03-18 14:33:30 +01:00
|
|
|
queue: default
|
|
|
|
|
2019-02-26 15:18:19 +01:00
|
|
|
free_disk_space:
|
|
|
|
cron: "0 5 * * 0" # every sunday at 5am
|
2022-03-09 14:33:50 +01:00
|
|
|
class: FreeDiskSpaceWorker
|
2020-07-01 16:56:21 +02:00
|
|
|
queue: system
|
|
|
|
|
|
|
|
# schedule a version check, every week at the current day+time
|
|
|
|
# this will prevent that all the instances query the hub simultaneously
|
2022-03-15 16:07:38 +01:00
|
|
|
<% h = DateTime.current - 1.minute %>
|
2020-07-01 16:56:21 +02:00
|
|
|
version_check:
|
2022-03-15 16:07:38 +01:00
|
|
|
cron: <%="#{h.strftime('%M %H')} * * #{h.cwday}" %>
|
2022-03-09 14:33:50 +01:00
|
|
|
class: VersionCheckWorker
|
2020-07-01 16:56:21 +02:00
|
|
|
queue: system
|
2019-02-26 15:18:19 +01:00
|
|
|
|
2021-01-20 17:00:23 +01:00
|
|
|
payment_schedule_item:
|
2021-02-08 10:05:54 +01:00
|
|
|
cron: "0 * * * *" # every day, every hour
|
2022-03-09 14:33:50 +01:00
|
|
|
class: PaymentScheduleItemWorker
|
2021-01-20 17:00:23 +01:00
|
|
|
queue: default
|
|
|
|
|
2016-05-25 12:21:38 +02:00
|
|
|
<%= PluginRegistry.insert_code('yml.schedule') %>
|