mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
9 lines
153 B
Ruby
9 lines
153 B
Ruby
class RequestsProfilesWorker
|
|
include ApplicationWorker
|
|
include CronjobQueue
|
|
|
|
def perform
|
|
Gitlab::RequestProfiler.remove_all_profiles
|
|
end
|
|
end
|