summaryrefslogtreecommitdiff
path: root/lib/gitlab_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab_projects.rb')
-rw-r--r--lib/gitlab_projects.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb
index 0b11ce3..4c63a40 100644
--- a/lib/gitlab_projects.rb
+++ b/lib/gitlab_projects.rb
@@ -5,7 +5,6 @@ require 'open3'
require_relative 'gitlab_config'
require_relative 'gitlab_logger'
require_relative 'gitlab_metrics'
-require_relative 'gitlab_reference_counter'
class GitlabProjects
GLOBAL_HOOKS_DIRECTORY = File.join(ROOT_PATH, 'hooks')
@@ -408,7 +407,12 @@ class GitlabProjects
end
def gitlab_reference_counter
- @gitlab_reference_counter ||= GitlabReferenceCounter.new(full_path)
+ @gitlab_reference_counter ||= begin
+ # Defer loading because this pulls in gitlab_net, which takes 100-200 ms
+ # to load
+ require_relative 'gitlab_reference_counter'
+ GitlabReferenceCounter.new(full_path)
+ end
end
def rsync(src, dest, rsync_path = 'rsync')