Remove unnecessary delay from sample load test script

This commit is contained in:
Daniel Sockwell 2020-04-21 16:41:44 -04:00
parent 1dcddc23de
commit 6d118c8dba
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