Commit b39002ce8861c1c76806501309ff159d4d65f375

Authored by Dmitriy Zaporozhets
1 parent ec7a1c50

Use namespace for gitlab resque

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/hooks/post-receive
@@ -8,5 +8,5 @@ do @@ -8,5 +8,5 @@ do
8 # For every branch or tag that was pushed, create a Resque job in redis. 8 # For every branch or tag that was pushed, create a Resque job in redis.
9 pwd=`pwd` 9 pwd=`pwd`
10 reponame=`basename "$pwd" | sed s/\.git$//` 10 reponame=`basename "$pwd" | sed s/\.git$//`
11 - env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1 11 + env -i redis-cli rpush "resque:gitlab:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1
12 done 12 done