2014-09-02 18:07:02 +05:30
|
|
|
class GitlabShellWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
include Gitlab::ShellAdapter
|
2016-11-03 12:29:30 +05:30
|
|
|
include DedicatedSidekiqQueue
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def perform(action, *arg)
|
|
|
|
gitlab_shell.send(action, *arg)
|
|
|
|
end
|
|
|
|
end
|