Commit c9cd43d9 authored by Jeremy Jackson's avatar Jeremy Jackson Committed by Alper Akgun

Remove caching_experiments feature flag [RUN ALL RSPEC] [RUN AS-IF-FOSS]

parent 33f7a2bc
...@@ -108,7 +108,6 @@ class ApplicationExperiment < Gitlab::Experiment # rubocop:disable Gitlab/Namesp ...@@ -108,7 +108,6 @@ class ApplicationExperiment < Gitlab::Experiment # rubocop:disable Gitlab/Namesp
end end
def write_entry(key, entry, **options) def write_entry(key, entry, **options)
return false unless Feature.enabled?(:caching_experiments)
return false if entry.value.blank? # don't cache any empty values return false if entry.value.blank? # don't cache any empty values
pool { |redis| redis.hset(*hkey(key), entry.value) } pool { |redis| redis.hset(*hkey(key), entry.value) }
......
---
title: Remove caching_experiments feature flag
merge_request: 53901
author:
type: other
---
name: caching_experiments
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/49669
rollout_issue_url:
milestone: '13.7'
type: development
group: group::adoption
default_enabled: false
...@@ -51,16 +51,4 @@ RSpec.describe ApplicationExperiment::Cache do ...@@ -51,16 +51,4 @@ RSpec.describe ApplicationExperiment::Cache do
'invalid call to clear a non-hash cache key' 'invalid call to clear a non-hash cache key'
) )
end end
context "when the :caching_experiments feature is disabled" do
before do
stub_feature_flags(caching_experiments: false)
end
it "doesn't write to the cache" do
subject.write(key_field, 'value')
expect(subject.read(key_field)).to be_nil
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment