mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
e22f1ae186
3am instead of randomly during the day.
15 lines
292 B
Ruby
15 lines
292 B
Ruby
require_dependency "backup_restore"
|
|
|
|
module Jobs
|
|
class CreateBackup < Jobs::Scheduled
|
|
daily at: 3.hours
|
|
sidekiq_options retry: false
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.backup_daily?
|
|
BackupRestore.backup!(Discourse.system_user.id, false)
|
|
end
|
|
end
|
|
end
|
|
|