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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-12 12:08:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-12 12:08:22 +0300
commit2e3f13a01a2833f85fb2201a245205b8e9d0ca9a (patch)
treee827a69320fa3f457d22a243672ab5f0857c2cdd /lib/gitlab/experiment
parent9e10ffebdd7550dc72c1124aa5db2eaa97dd0282 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/experiment')
-rw-r--r--lib/gitlab/experiment/rollout/feature.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/gitlab/experiment/rollout/feature.rb b/lib/gitlab/experiment/rollout/feature.rb
index 70c363877b1..4bef92f5c23 100644
--- a/lib/gitlab/experiment/rollout/feature.rb
+++ b/lib/gitlab/experiment/rollout/feature.rb
@@ -28,13 +28,10 @@ module Gitlab
# If the `Feature.enabled?` check is false, we return nil implicitly,
# which will assign the control. Otherwise we call super, which will
# assign a variant evenly, or based on our provided distribution rules.
- def execute_assigment
+ def execute_assignment
super if ::Feature.enabled?(feature_flag_name, self, type: :experiment, default_enabled: :yaml)
end
- # NOTE: There's a typo in the name of this method that we'll fix up.
- alias_method :execute_assignment, :execute_assigment
-
# This is what's provided to the `Feature.enabled?` call that will be
# used to determine experiment inclusion. An experiment may provide an
# override for this method to make the experiment work on user, group,