0ab89d8e36
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
12 lines
257 B
Ruby
12 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TrendingProjectsWorker
|
|
include ApplicationWorker
|
|
include CronjobQueue
|
|
|
|
def perform
|
|
Rails.logger.info('Refreshing trending projects') # rubocop:disable Gitlab/RailsLogger
|
|
|
|
TrendingProject.refresh!
|
|
end
|
|
end
|