sleepTimeMS -> workTimeMS

This commit is contained in:
Andrew Kent 2018-01-02 11:04:57 -08:00
parent 9de6417f87
commit 905bdb1cc1
1 changed files with 5 additions and 5 deletions

View File

@ -9,9 +9,9 @@ test_num_threads=5
# endpoionts to test
declare -A endpoints
endpoints['<1MS']='http://localhost:8080'
endpoints['1MS']='http://localhost:8080?sleepTimeMS=1'
endpoints['2MS']='http://localhost:8080?sleepTimeMS=2'
endpoints['5MS']='http://localhost:8080?sleepTimeMS=5'
endpoints['10MS']='http://localhost:8080?sleepTimeMS=10'
endpoints['<1MS']='http://localhost:8080/work'
endpoints['1MS']='http://localhost:8080/work?workTimeMS=1'
endpoints['2MS']='http://localhost:8080/work?workTimeMS=2'
endpoints['5MS']='http://localhost:8080/work?workTimeMS=5'
endpoints['10MS']='http://localhost:8080/work?workTimeMS=10'
test_order=( '<1MS' '1MS' '2MS' '5MS' '10MS' )