Class: Gitlab::GithubImport::Importer::LfsObjectsImporter
- Inherits:
-
Object
- Object
- Gitlab::GithubImport::Importer::LfsObjectsImporter
show all
- Includes:
- ParallelScheduling
- Defined in:
- lib/gitlab/github_import/importer/lfs_objects_importer.rb
Constant Summary
ParallelScheduling::ALREADY_IMPORTED_CACHE_KEY
Instance Attribute Summary
#already_imported_cache_key, #client, #page_counter, #project
Instance Method Summary
collapse
#already_imported?, #collection_options, #execute, #id_for_already_imported_cache, #initialize, #mark_as_imported, #parallel?, #parallel_import, #sequential_import
Instance Method Details
#collection_method ⇒ Object
21
22
23
|
# File 'lib/gitlab/github_import/importer/lfs_objects_importer.rb', line 21
def collection_method
:lfs_objects
end
|
#each_object_to_import ⇒ Object
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/gitlab/github_import/importer/lfs_objects_importer.rb', line 25
def each_object_to_import
lfs_objects = Projects::LfsPointers::LfsImportService.new(project).execute
lfs_objects.each do |object|
yield object
end
rescue StandardError => e
Gitlab::Import::Logger.error(
message: 'The Lfs import process failed',
error: e.message
)
end
|
#importer_class ⇒ Object
9
10
11
|
# File 'lib/gitlab/github_import/importer/lfs_objects_importer.rb', line 9
def importer_class
LfsObjectImporter
end
|
#representation_class ⇒ Object
13
14
15
|
# File 'lib/gitlab/github_import/importer/lfs_objects_importer.rb', line 13
def representation_class
Representation::LfsObject
end
|
#sidekiq_worker_class ⇒ Object
17
18
19
|
# File 'lib/gitlab/github_import/importer/lfs_objects_importer.rb', line 17
def sidekiq_worker_class
ImportLfsObjectWorker
end
|