mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
Remove limit default.
Having the limit makes it harder to migrate all `Upload`/`OptimizedImage` since the count has to be figured out and passed to the method.
This commit is contained in:
parent
82324db71a
commit
efd7cbd887
2 changed files with 13 additions and 11 deletions
|
@ -201,18 +201,20 @@ class OptimizedImage < ActiveRecord::Base
|
|||
false
|
||||
end
|
||||
|
||||
def self.migrate_to_new_scheme(limit=50)
|
||||
def self.migrate_to_new_scheme(limit=nil)
|
||||
problems = []
|
||||
|
||||
if SiteSetting.migrate_to_new_scheme
|
||||
max_file_size_kb = SiteSetting.max_image_size_kb.kilobytes
|
||||
local_store = FileStore::LocalStore.new
|
||||
|
||||
OptimizedImage.includes(:upload)
|
||||
scope = OptimizedImage.includes(:upload)
|
||||
.where("url NOT LIKE '%/optimized/_X/%'")
|
||||
.limit(limit)
|
||||
.order(id: :desc)
|
||||
.each do |optimized_image|
|
||||
|
||||
scope.limit(limit) if limit
|
||||
|
||||
scope.each do |optimized_image|
|
||||
begin
|
||||
# keep track of the url
|
||||
previous_url = optimized_image.url.dup
|
||||
|
|
|
@ -233,17 +233,17 @@ class Upload < ActiveRecord::Base
|
|||
`convert #{path} -auto-orient #{path}`
|
||||
end
|
||||
|
||||
def self.migrate_to_new_scheme(limit=50)
|
||||
def self.migrate_to_new_scheme(limit=nil)
|
||||
problems = []
|
||||
|
||||
if SiteSetting.migrate_to_new_scheme
|
||||
max_file_size_kb = [SiteSetting.max_image_size_kb, SiteSetting.max_attachment_size_kb].max.kilobytes
|
||||
local_store = FileStore::LocalStore.new
|
||||
|
||||
Upload.where("url NOT LIKE '%/original/_X/%'")
|
||||
.limit(limit)
|
||||
.order(id: :desc)
|
||||
.each do |upload|
|
||||
scope = Upload.where("url NOT LIKE '%/original/_X/%'").order(id: :desc)
|
||||
scope.limit(limit) if limit
|
||||
|
||||
scope.each do |upload|
|
||||
begin
|
||||
# keep track of the url
|
||||
previous_url = upload.url.dup
|
||||
|
|
Loading…
Reference in a new issue