Skip to content

Commit

Permalink
More readable for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
pote committed Dec 7, 2014
1 parent 5047f92 commit ac86717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/upstart/manage-one/workers.conf
Expand Up @@ -23,7 +23,7 @@ stop on runlevel [06]
env NUM_WORKERS=2

pre-start script
for i in `seq 0 $((${NUM_WORKERS} - 1))`
for i in `seq 1 ${NUM_WORKERS}`
do
start sidekiq index=$i
done
Expand Down

0 comments on commit ac86717

Please sign in to comment.