keys to gitolite via sidekiq now

This commit is contained in:
Dmitriy Zaporozhets 2013-01-28 21:02:10 +02:00
parent 944b2450b1
commit 299a9a1040
3 changed files with 30 additions and 6 deletions

View file

@ -4,7 +4,7 @@ class GitoliteWorker
sidekiq_options queue: :gitolite
def perform(action, arg)
gitolite.send(action, arg)
def perform(action, *arg)
gitolite.send(action, *arg)
end
end