Commit 495deea7eb5aa4c8b8e2365a351d1c2eedf1010a

Authored by Dmitriy Zaporozhets
1 parent 2dae0e18

fixed queue name

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/post-receive-hook
@@ -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" | cut -d. -f1` 10 reponame=`basename "$pwd" | cut -d. -f1`
11 - env -i redis-cli rpush "resque:queue:post-receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\"]}" > /dev/null 2>&1 11 + env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\"]}" > /dev/null 2>&1
12 done 12 done