Welcome to mirror list, hosted at ThFree Co, Russian Federation.

requests_profiles_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae022d43e2976bf1c29b0a40e04c49f3f64ed3ce (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class RequestsProfilesWorker
  include ApplicationWorker
  include CronjobQueue

  def perform
    Gitlab::RequestProfiler.remove_all_profiles
  end
end