2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-07-13 11:08:38 -04:00
|
|
|
class BuildFinishedWorker < ::Ci::BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker
|
|
|
|
# DEPRECATED: Not triggered since https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64934/
|
2021-04-30 14:10:09 -04:00
|
|
|
|
2021-07-13 11:08:38 -04:00
|
|
|
# We need to explicitly specify these settings. They aren't inheriting from the parent class.
|
2020-03-02 13:07:42 -05:00
|
|
|
urgency :high
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_resource_boundary :cpu
|
2016-10-14 06:53:51 -04:00
|
|
|
end
|