Commit d3f4696b authored by Alex Ives's avatar Alex Ives

Remove ff secondary_usage_data_collection

- Remove feature flag for secondary_usage_data_collection
- Add changelog for collecting git fetch information

Relates to https://gitlab.com/gitlab-org/gitlab/issues/322628
parent a429b96c
......@@ -13,7 +13,6 @@ module Geo
def perform
return unless Gitlab::Geo.secondary?
return unless Feature.enabled?(:geo_secondary_usage_data_collection)
try_obtain_lease do
SecondaryUsageData.update_metrics!
......
---
title: Add git fetch counts for geo secondaries to usage ping
merge_request: 56678
author:
type: added
---
name: geo_secondary_usage_data_collection
introduced_by_url:
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/322628
milestone: '13.10'
type: development
group: group::geo
default_enabled: false
......@@ -32,7 +32,7 @@ RSpec.describe Geo::SecondaryUsageDataCronWorker, :clean_gitlab_redis_shared_sta
subject.perform
end
it "does not update metrics if it doesn't obtain the lease" do
it 'does not update metrics if it does not obtain the lease' do
expect(subject).to receive(:try_obtain_lease).and_return(false)
expect(Geo::SecondaryUsageData).not_to receive(:update_metrics!)
......
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