Skip to content

Commit

Permalink
make clients in overmind start from 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mzk-vct committed Mar 22, 2017
1 parent 0c694e0 commit 8e35579
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/load_test_overmind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ printf -v OUT_DIR 'test_result_%s_%s__%s' "$PARALLELISM_FACTOR" "$REQ_NUM" "$tim

mkdir -p $OUT_DIR
echo "starting $PARALLELISM_FACTOR clients, making them send $REQ_NUM requests"
for I in $(seq 0 $(($PARALLELISM_FACTOR - 1)));
for I in $(seq 1 $(($PARALLELISM_FACTOR)));
do
echo "starting client #$I"
python -u scripts/load_test.py -t $REQ_TYPE -r $REQ_NUM --clients-list="$CLIENT_LIST" --skip-clients $I --timeout $TIMEOUT &> "$OUT_DIR/$I.log" &
done
python -u scripts/load_test.py -t $REQ_TYPE -r $REQ_NUM --clients-list="$CLIENT_LIST" --skip-clients $I --timeout $TIMEOUT &> "$OUT_DIR/$I.log" &
done

0 comments on commit 8e35579

Please sign in to comment.