gitlab-org--gitlab-foss/app/workers/gitlab_shell_one_shot_worke...

11 lines
217 B
Ruby
Raw Normal View History

2016-03-17 10:02:11 +00:00
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