Skip to content

Commit

Permalink
Merge pull request sidekiq#2078 from pote/improve_bash_in_upstart_exa…
Browse files Browse the repository at this point in the history
…mple

More readable for loop in upstart example
  • Loading branch information
mperham committed Dec 7, 2014
2 parents 0c8de8c + ac86717 commit 811f005
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 811f005

Please sign in to comment.