2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class UpdateMergeRequestsWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-10 03:40:14 -04:00
|
|
|
|
2021-07-21 08:09:35 -04:00
|
|
|
data_consistency :always
|
|
|
|
|
2021-04-30 14:10:09 -04:00
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
2020-12-02 13:09:35 -05:00
|
|
|
feature_category :code_review
|
2020-03-02 13:07:42 -05:00
|
|
|
urgency :high
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_resource_boundary :cpu
|
2020-01-24 13:09:00 -05:00
|
|
|
weight 3
|
2020-06-12 08:08:56 -04:00
|
|
|
loggable_arguments 2, 3, 4
|
2019-10-18 07:11:44 -04:00
|
|
|
|
2016-10-10 03:40:14 -04:00
|
|
|
def perform(project_id, user_id, oldrev, newrev, ref)
|
2021-11-10 10:13:21 -05:00
|
|
|
project = Project.find_by_id(project_id)
|
2016-10-10 03:40:14 -04:00
|
|
|
return unless project
|
|
|
|
|
2021-11-10 10:13:21 -05:00
|
|
|
user = User.find_by_id(user_id)
|
2016-10-10 03:40:14 -04:00
|
|
|
return unless user
|
|
|
|
|
2021-05-11 23:10:21 -04:00
|
|
|
MergeRequests::RefreshService.new(project: project, current_user: user).execute(oldrev, newrev, ref)
|
2016-10-10 03:40:14 -04:00
|
|
|
end
|
|
|
|
end
|