Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_finished_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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