mirror of
https://github.com/discourse/discourse.git
synced 2024-12-22 13:10:33 +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
21 lines
498 B
Ruby
21 lines
498 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Migrations::Converters::Example
|
|
class Step2 < ::Migrations::Converters::Base::ProgressStep
|
|
run_in_parallel false
|
|
|
|
def items
|
|
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
|
end
|
|
|
|
def process_item(item)
|
|
sleep(0.5)
|
|
|
|
step.log_warning("Test", details: item) if item.in?([3, 7, 9])
|
|
step.log_error("Test", details: item) if item.in?([6, 10])
|
|
|
|
IntermediateDB::LogEntry.create!(type: "info", message: "Step2 - #{item}")
|
|
end
|
|
end
|
|
end
|