Followup for issue #1375 - added missing scheduler job for new setups.

This commit is contained in:
Martin Edenhofer 2017-08-31 06:51:17 +02:00
parent fe409727c1
commit b46e872926

View file

@ -12,6 +12,13 @@ Scheduler.create_if_not_exists(
prio: 1, prio: 1,
active: true, active: true,
) )
Scheduler.create_if_not_exists(
name: 'Process auto unassign tickets',
method: 'Ticket.process_auto_unassign',
period: 10.minutes,
prio: 1,
active: true,
)
Scheduler.create_if_not_exists( Scheduler.create_if_not_exists(
name: 'Import OTRS diff load', name: 'Import OTRS diff load',
method: 'Import::OTRS.diff_worker', method: 'Import::OTRS.diff_worker',