Skip to content
Snippets Groups Projects
Commit 0a47593c authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Only wait for first round to finish, not 2

parent 605422e3
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ cnt=0
echo -n "Waiting for a round to run"
while [ ! -s rid.txt ] && [ $cnt -lt 120 ]; do
sleep 1
cat results/servers/server-5.log | grep "RID 1 ReceiveFinishRealtime END" > rid.txt || true
cat results/servers/server-5.log | grep "RID 0 ReceiveFinishRealtime END" > rid.txt || true
cnt=$(($cnt + 1))
echo -n "."
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment