2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class PagesWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2021-07-21 08:09:35 -04:00
|
|
|
data_consistency :always
|
|
|
|
|
2018-03-05 07:57:48 -05:00
|
|
|
sidekiq_options retry: 3
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :pages
|
2020-06-12 08:08:56 -04:00
|
|
|
loggable_arguments 0, 1
|
2021-07-27 23:08:41 -04:00
|
|
|
worker_resource_boundary :cpu
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2015-12-18 07:07:53 -05:00
|
|
|
def perform(action, *arg)
|
2017-08-03 22:20:34 -04:00
|
|
|
send(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
|
2015-12-18 07:07:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def deploy(build_id)
|
2021-11-10 10:13:21 -05:00
|
|
|
build = Ci::Build.find_by_id(build_id)
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2021-12-23 13:14:10 -05:00
|
|
|
Projects::UpdatePagesService.new(build.project, build).execute
|
2015-12-18 07:07:53 -05:00
|
|
|
end
|
2015-11-03 15:28:07 -05:00
|
|
|
end
|