debian-mirror-gitlab/app/workers/plugin_worker.rb
2019-12-21 20:55:43 +05:30

19 lines
363 B
Ruby

# frozen_string_literal: true
class PluginWorker
include ApplicationWorker
sidekiq_options retry: false
feature_category :integrations
def perform(file_name, data)
success, message = Gitlab::Plugin.execute(file_name, data)
unless success
Gitlab::PluginLogger.error("Plugin Error => #{file_name}: #{message}")
end
true
end
end