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 'app/experiments/empty_repo_upload_experiment.rb')
-rw-r--r--app/experiments/empty_repo_upload_experiment.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/experiments/empty_repo_upload_experiment.rb b/app/experiments/empty_repo_upload_experiment.rb
deleted file mode 100644
index c8c75f32d69..00000000000
--- a/app/experiments/empty_repo_upload_experiment.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class EmptyRepoUploadExperiment < ApplicationExperiment
- include ProjectCommitCount
-
- TRACKING_START_DATE = DateTime.parse('2021/4/20')
- INITIAL_COMMIT_COUNT = 1
-
- def track_initial_write
- return unless should_track? # early return if we don't need to ask for commit counts
- return unless context.project.created_at > TRACKING_START_DATE # early return for older projects
- return unless commit_count == INITIAL_COMMIT_COUNT
-
- track(:initial_write, project: context.project)
- end
-
- private
-
- def commit_count
- commit_count_for(context.project, max_count: INITIAL_COMMIT_COUNT, experiment: name)
- end
-end