mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 07:31:03 +08:00
21 lines
475 B
Ruby
21 lines
475 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, stats)
|
||
|
sleep(0.5)
|
||
|
|
||
|
stats.warning_count += 1 if item.in?([3, 7, 9])
|
||
|
stats.error_count += 1 if item.in?([6, 10])
|
||
|
|
||
|
IntermediateDB::LogEntry.create!(type: "info", message: "Step2 - #{item}")
|
||
|
end
|
||
|
end
|
||
|
end
|