2013-02-11 12:27:26 -05:00
|
|
|
class GitlabShellWorker
|
2013-01-28 10:22:45 -05:00
|
|
|
include Sidekiq::Worker
|
2013-03-21 15:01:14 -04:00
|
|
|
include Gitlab::ShellAdapter
|
2013-01-28 10:22:45 -05:00
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
sidekiq_options queue: :gitlab_shell
|
2013-01-28 10:22:45 -05:00
|
|
|
|
2013-01-28 14:02:10 -05:00
|
|
|
def perform(action, *arg)
|
2013-02-11 12:16:59 -05:00
|
|
|
gitlab_shell.send(action, *arg)
|
2013-01-28 10:22:45 -05:00
|
|
|
end
|
|
|
|
end
|