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-04 03:09:48 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-04 03:09:48 +0400
commit495deea7eb5aa4c8b8e2365a351d1c2eedf1010a (patch)
tree54ece7e1d0b121ee0508f129c0bc30a94f5d714a /lib
parent2dae0e18e09132c0db32c8646d8d11b30cfcb83f (diff)
fixed queue name
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