Commits not showing on project home page. Error in sidekiq log
Created by: jimothyGator
When I push changes to a repo, the project's home page is not updated with the commit(s).
$ sudo service gitlab status
gitlab service / Unicorn with PID 2908 is running.
Gitlab service / Sidekiq with PID 2970 is running.
$ sudo cat /home/git/repositories/project.git/hooks/post-receive
#!/usr/bin/env bash
# Version 4.1
# This file was placed here by GitLab. It makes sure that your pushed commits
# will be processed properly.
while read oldrev newrev ref
do
# For every branch or tag that was pushed, create a Resque job in redis.
repo_path=`pwd`
env -i redis-cli rpush "resque:gitlab:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$repo_path\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1
done
sidekiq.log:
2013-01-25T14:28:55Z 2970 TID-1ep2ee WARN: 211
2013-01-25T14:28:55Z 2970 TID-1ep2ee WARN: can't convert String into Integer
2013-01-25T14:28:55Z 2970 TID-1ep2ee WARN: /home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/sidekiq-2.6.4/lib/sidekiq/processor.rb:39:in `[]'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/sidekiq-2.6.4/lib/sidekiq/processor.rb:39:in `block in process'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/calls.rb:23:in `call'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/calls.rb:23:in `public_send'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/calls.rb:23:in `dispatch'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/future.rb:18:in `block in initialize'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/internal_pool.rb:48:in `call'
/home/gitlab/gitlab/vendor/bundle/ruby/1.9.1/gems/celluloid-0.12.4/lib/celluloid/internal_pool.rb:48:in `block in create'
redis-cli monitor:
1359124135.482939 [0 127.0.0.1:46823] "rpush" "resque:gitlab:queue:post_receive" "211"
1359124135.485072 [0 127.0.0.1:46768] "brpop" "resque:gitlab:queue:post_receive" "resque:gitlab:queue:mailer" "resque:gitlab:queue:system_hook" "resque:gitlab:queue:common" "resque:gitlab:queue:default" "1"