Class: Gitlab::GithubImport::Stage::ImportNotesWorker
- Inherits:
-
Object
- Object
- Gitlab::GithubImport::Stage::ImportNotesWorker
- Includes:
- ApplicationWorker, Queue, Gitlab::GithubImport::StageMethods
- Defined in:
- app/workers/gitlab/github_import/stage/import_notes_worker.rb
Overview
rubocop:disable Scalability/IdempotentWorker
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY
Constants included from WorkerAttributes
WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
-
#import(client, project) ⇒ Object
client - An instance of Gitlab::GithubImport::Client.
Methods included from Gitlab::GithubImport::StageMethods
#find_project, #perform, #try_import
Methods included from SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#import(client, project) ⇒ Object
client - An instance of Gitlab::GithubImport::Client. project - An instance of Project.
13 14 15 16 17 18 19 20 21 22 23 |
# File 'app/workers/gitlab/github_import/stage/import_notes_worker.rb', line 13 def import(client, project) waiter = Importer::NotesImporter .new(project, client) .execute AdvanceStageWorker.perform_async( project.id, { waiter.key => waiter.jobs_remaining }, :lfs_objects ) end |