Commit 5bed6658 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'remove_store_instance_statistics_measurements_ff' into 'master'

Remove store_instance_statistics_measurements FF

See merge request gitlab-org/gitlab!44566
parents 52aa21e5 c58409e8
...@@ -14,8 +14,6 @@ module Analytics ...@@ -14,8 +14,6 @@ module Analytics
idempotent! idempotent!
def perform def perform
return if Feature.disabled?(:store_instance_statistics_measurements, default_enabled: true)
recorded_at = Time.zone.now recorded_at = Time.zone.now
worker_arguments = Gitlab::Analytics::InstanceStatistics::WorkersArgumentBuilder.new( worker_arguments = Gitlab::Analytics::InstanceStatistics::WorkersArgumentBuilder.new(
......
---
title: Remove the `store_instance_statistics_measurements` feature flag
merge_request: 44566
author:
type: changed
---
name: store_instance_statistics_measurements
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/41300
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/247871
group: group::analytics
type: development
default_enabled: true
...@@ -14,16 +14,4 @@ RSpec.describe Analytics::InstanceStatistics::CountJobTriggerWorker do ...@@ -14,16 +14,4 @@ RSpec.describe Analytics::InstanceStatistics::CountJobTriggerWorker do
expect(Analytics::InstanceStatistics::CounterJobWorker.jobs.count).to eq(expected_count) expect(Analytics::InstanceStatistics::CounterJobWorker.jobs.count).to eq(expected_count)
end end
end end
context 'when the `store_instance_statistics_measurements` feature flag is off' do
before do
stub_feature_flags(store_instance_statistics_measurements: false)
end
it 'does not trigger any CounterJobWorker job' do
subject.perform
expect(Analytics::InstanceStatistics::CounterJobWorker.jobs.count).to eq(0)
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