e75b1f1105
Use ReactiveCaching to update external CI status asynchronously See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2055
15 lines
325 B
Ruby
15 lines
325 B
Ruby
class ReactiveCachingWorker
|
|
include Sidekiq::Worker
|
|
include DedicatedSidekiqQueue
|
|
|
|
def perform(class_name, id, *args)
|
|
klass = begin
|
|
Kernel.const_get(class_name)
|
|
rescue NameError
|
|
nil
|
|
end
|
|
return unless klass
|
|
|
|
klass.find_by(id: id).try(:exclusively_update_reactive_cache!, *args)
|
|
end
|
|
end
|