Remove unnecessary delay from sample load test script (#134)

This commit is contained in:
Daniel Sockwell 2020-04-21 17:06:52 -04:00 committed by GitHub
parent 1dcddc23de
commit 6d9797ecc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ command -v websocat >/dev/null || { echo >&2 "Install websocat with `cargo insta
echo "Opening $number_of_ws WebSockets to $timeline"
for i in $(seq 0 $number_of_ws); do
sleep 0.1
websocat wss://${instance}/api/v1/streaming/?stream=${timeline} --no-close > /dev/null &
done