mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
13 lines
258 B
Ruby
13 lines
258 B
Ruby
|
|
||
|
module Jobs
|
||
|
class ScheduleBackup < Jobs::Scheduled
|
||
|
daily at: 3.hours
|
||
|
sidekiq_options retry: false
|
||
|
|
||
|
def execute(args)
|
||
|
return unless SiteSetting.backup_daily?
|
||
|
Jobs.enqueue_in(rand(10.minutes), :create_daily_backup)
|
||
|
end
|
||
|
end
|
||
|
end
|