diff options
Diffstat (limited to 'lib/hooks')
-rwxr-xr-x | lib/hooks/post-receive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hooks/post-receive b/lib/hooks/post-receive index 4e59667984c..4a3ce372eb8 100755 --- a/lib/hooks/post-receive +++ b/lib/hooks/post-receive @@ -8,5 +8,5 @@ do # For every branch or tag that was pushed, create a Resque job in redis. pwd=`pwd` reponame=`basename "$pwd" | sed s/\.git$//` - env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1 + env -i redis-cli rpush "resque:gitlab:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1 done |