summaryrefslogtreecommitdiff
path: root/app/workers/plugin_worker.rb
blob: e708031abdfe2896a1cb7a5cf1d194a25f2175f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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