mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 11:53:39 +08:00
5ac69076c1
* Remove unused `report_progress_in_percent` option from step * Remove `use_custom_progress_increment` option from the step because we can figure it out by looking at the progress * Introduce `StepTracker` to for logging warnings and errors and tracking step progress * Make it easier to log warnings and errors in all methods of `Step` without the need to pass around a `stats` object
28 lines
443 B
Ruby
28 lines
443 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Migrations::Converters::Base
|
|
class ProgressStep < Step
|
|
def max_progress
|
|
nil
|
|
end
|
|
|
|
def items
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def process_item(item)
|
|
raise NotImplementedError
|
|
end
|
|
|
|
class << self
|
|
def run_in_parallel(value)
|
|
@run_in_parallel = !!value
|
|
end
|
|
|
|
def run_in_parallel?
|
|
@run_in_parallel == true
|
|
end
|
|
end
|
|
end
|
|
end
|