19 lines
461 B
Ruby
19 lines
461 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RequestsProfilesWorker # rubocop:disable Scalability/IdempotentWorker
|
||
|
include ApplicationWorker
|
||
|
|
||
|
data_consistency :always
|
||
|
|
||
|
# rubocop:disable Scalability/CronWorkerContext
|
||
|
# This worker does not perform work scoped to a context
|
||
|
include CronjobQueue
|
||
|
# rubocop:enable Scalability/CronWorkerContext
|
||
|
|
||
|
feature_category :source_code_management
|
||
|
|
||
|
def perform
|
||
|
Gitlab::RequestProfiler.remove_all_profiles
|
||
|
end
|
||
|
end
|