summaryrefslogtreecommitdiff
path: root/app/workers/build_finished_worker.rb
blob: 0d41f7b94388d60ba129a5fe96ed6cdae0593efa (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class BuildFinishedWorker < ::Ci::BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker
  # DEPRECATED: Not triggered since https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64934/

  # We need to explicitly specify these settings. They aren't inheriting from the parent class.
  urgency :high
  worker_resource_boundary :cpu
end