Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/parallel_scheduling.rb')
-rw-r--r--lib/gitlab/github_import/parallel_scheduling.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/gitlab/github_import/parallel_scheduling.rb b/lib/gitlab/github_import/parallel_scheduling.rb
index bf5046de36c..03aa02fb659 100644
--- a/lib/gitlab/github_import/parallel_scheduling.rb
+++ b/lib/gitlab/github_import/parallel_scheduling.rb
@@ -125,9 +125,13 @@ module Gitlab
next unless page_counter.set(page.number)
page.objects.each do |object|
+ object = object.to_h
+
next if already_imported?(object)
- Gitlab::GithubImport::ObjectCounter.increment(project, object_type, :fetched)
+ if increment_object_counter?(object)
+ Gitlab::GithubImport::ObjectCounter.increment(project, object_type, :fetched)
+ end
yield object
@@ -138,6 +142,10 @@ module Gitlab
end
end
+ def increment_object_counter?(_object)
+ true
+ end
+
# Returns true if the given object has already been imported, false
# otherwise.
#