debian-mirror-gitlab/app/workers/build_finished_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
378 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2021-09-30 23:02:18 +05:30
class BuildFinishedWorker < ::Ci::BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker
# DEPRECATED: Not triggered since https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64934/
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
# We need to explicitly specify these settings. They aren't inheriting from the parent class.
2020-04-08 14:13:33 +05:30
urgency :high
2019-12-26 22:10:19 +05:30
worker_resource_boundary :cpu
2016-11-03 12:29:30 +05:30
end