mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
More readable for loop
This commit is contained in:
parent
5047f9220b
commit
ac86717490
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue