debian-mirror-gitlab/app/workers/gitlab/github_import/stage/import_pull_requests_reviews_worker.rb
2021-03-08 18:12:59 +05:30

29 lines
795 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
module Stage
class ImportPullRequestsReviewsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include GithubImport::Queue
include StageMethods
# client - An instance of Gitlab::GithubImport::Client.
# project - An instance of Project.
def import(client, project)
waiter = Importer::PullRequestsReviewsImporter
.new(project, client)
.execute
project.import_state.refresh_jid_expiration
AdvanceStageWorker.perform_async(
project.id,
{ waiter.key => waiter.jobs_remaining },
:issues_and_diff_notes
)
end
end
end
end
end