Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-08 15:20:56 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-08 15:20:56 +0400
commit7b0cd969e05995b3792aed76ed15b482ed4381a3 (patch)
treea98c70bab7e0621cf1e04ea5ffba07700a95cef6 /lib
parenta3efa430624fc7678859a9296dd318d2220ec036 (diff)
parent473445c76fe6d99243a0e6b0247bc79cc47c3e44 (diff)
Merge branch 'web_hooks_scaffold'
Diffstat (limited to 'lib')
-rwxr-xr-xlib/post-receive-hook2
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