mirror of
https://github.com/discourse/discourse.git
synced 2024-12-23 05:38:43 +08:00
7c3a29c9d6
* Updates GitHub Actions * Switches from `bundler/inline` to an optional group in the `Gemfile` because the previous solution didn't work well with rspec * Adds the converter framework and tests * Allows loading private converters (see README) * Switches from multiple CLI tools to a single CLI * Makes DB connections reusable and adds a new abstraction for the `IntermediateDB` * `IntermediateDB` acts as an interface for IPC calls when a converter steps runs in parallel (forks). Only the main process writes to the DB. * Includes a simple example implementation of a converter for now.
22 lines
425 B
Ruby
22 lines
425 B
Ruby
# 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, stats)
|
|
sleep(0.5)
|
|
|
|
IntermediateDB::LogEntry.create!(type: "info", message: "Step3 - #{item[:counter]}")
|
|
end
|
|
end
|
|
end
|