Files
MaxScale/system-test/session_hang/run_setmix.sh
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

8 lines
276 B
Bash
Executable File

#!/bin/bash
for ((i=0 ; i<100 ; i++)) ;
do
echo "Iteration $i"
mysql --host=${maxscale_000_network} -P 4006 -u $node_user -p$node_password --verbose --force --unbuffered=true --disable-reconnect $ssl_options > /dev/null < $src_dir/session_hang/setmix.sql >& /dev/null
done