mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 23:05:30 +08:00
11 lines
319 B
Ruby
11 lines
319 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class VacateLegacyPrefixBackups < ::Jobs::Onceoff
|
||
|
def execute_onceoff(args)
|
||
|
args ||= {}
|
||
|
BackupRestore::S3BackupStore.create(s3_options: args[:s3_options]).vacate_legacy_prefix if SiteSetting.backup_location == BackupLocationSiteSetting::S3
|
||
|
end
|
||
|
end
|
||
|
end
|