2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IssueRebalancingWorker
|
|
|
|
include ApplicationWorker
|
|
|
|
|
|
|
|
idempotent!
|
|
|
|
urgency :low
|
|
|
|
feature_category :issue_tracking
|
|
|
|
|
|
|
|
def perform(ignore = nil, project_id = nil)
|
|
|
|
return if project_id.nil?
|
|
|
|
|
|
|
|
project = Project.find(project_id)
|
2021-01-03 14:25:43 +05:30
|
|
|
# All issues are equivalent as far as we are concerned
|
|
|
|
issue = project.issues.take # rubocop: disable CodeReuse/ActiveRecord
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
IssueRebalancingService.new(issue).execute
|
|
|
|
rescue ActiveRecord::RecordNotFound, IssueRebalancingService::TooManyIssues => e
|
|
|
|
Gitlab::ErrorTracking.log_exception(e, project_id: project_id)
|
|
|
|
end
|
|
|
|
end
|