discourse/migrations/lib/converters/example/steps/step3.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
511 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Migrations::Converters::Example
class Step3 < ::Migrations::Converters::Base::ProgressStep
run_in_parallel true
def max_progress
1000
end
def items
(1..1000).map { |i| { counter: i } }
end
def process_item(item)
sleep(0.5)
step.log_warning("Test", details: item) if item[:counter] > 10 && item[:counter] < 20
IntermediateDB::LogEntry.create!(type: "info", message: "Step3 - #{item[:counter]}")
end
end
end