diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-01-08 13:20:56 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-01-08 13:20:56 +0200 |
commit | 7b0cd969e05995b3792aed76ed15b482ed4381a3 (patch) | |
tree | a98c70bab7e0621cf1e04ea5ffba07700a95cef6 /lib | |
parent | a3efa430624fc7678859a9296dd318d2220ec036 (diff) | |
parent | 473445c76fe6d99243a0e6b0247bc79cc47c3e44 (diff) | |
download | gitlab-ce-7b0cd969e05995b3792aed76ed15b482ed4381a3.tar.gz |
Merge branch 'web_hooks_scaffold'
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/post-receive-hook | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/post-receive-hook b/lib/post-receive-hook index ec7c607f75d..d7354d6515b 100755 --- a/lib/post-receive-hook +++ b/lib/post-receive-hook @@ -8,5 +8,5 @@ do # For every branch or tag that was pushed, create a Resque job in redis. pwd=`pwd` reponame=`basename "$pwd" | cut -d. -f1` - env -i redis-cli rpush "resque:queue:post-receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\"]}" > /dev/null 2>&1 + env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\"]}" > /dev/null 2>&1 done |