Class: Gitlab::GithubImport::Stage::ImportLfsObjectsWorker
- Inherits:
-
Object
- Object
- Gitlab::GithubImport::Stage::ImportLfsObjectsWorker
- Includes:
- ApplicationWorker, Queue, Gitlab::GithubImport::StageMethods
- Defined in:
- app/workers/gitlab/github_import/stage/import_lfs_objects_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(project) ⇒ Object
project - An instance of Project.
- #perform(project_id) ⇒ Object
Methods included from Gitlab::GithubImport::StageMethods
Methods included from SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#import(project) ⇒ Object
project - An instance of Project.
18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/workers/gitlab/github_import/stage/import_lfs_objects_worker.rb', line 18 def import(project) waiter = Importer::LfsObjectsImporter .new(project, nil) .execute AdvanceStageWorker.perform_async( project.id, { waiter.key => waiter.jobs_remaining }, :finish ) end |
#perform(project_id) ⇒ Object
11 12 13 14 15 |
# File 'app/workers/gitlab/github_import/stage/import_lfs_objects_worker.rb', line 11 def perform(project_id) return unless (project = find_project(project_id)) import(project) end |