Files
gitlabhq/app/workers/gitlab_shell_one_shot_worker.rb
T
2016-03-17 11:02:11 +01:00

11 lines
217 B
Ruby

class GitlabShellOneShotWorker
include Sidekiq::Worker
include Gitlab::ShellAdapter
sidekiq_options queue: :gitlab_shell, retry: false
def perform(action, *arg)
gitlab_shell.send(action, *arg)
end
end