diff options
author | unknown <msvensson@neptunus.(none)> | 2005-05-25 11:10:10 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-05-25 11:10:10 +0200 |
commit | 827db5e40cf4c85e5b57cc4f82aecaab8f02bbcd (patch) | |
tree | 987ab9f8515a0663c3a8fccc6982762c336b682e /mysql-test/mysql-test-run.sh | |
parent | 3ca4caef3fa58fd48c1f14777e08f617e434a049 (diff) | |
download | mariadb-git-827db5e40cf4c85e5b57cc4f82aecaab8f02bbcd.tar.gz |
Use one err file for each master
mysql-test/mysql-test-run.sh:
Add master id to end of MASTER_MY_ERR so that both masters doesnt write to the same file.
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 4fee560ee44..3f7e7d22200 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -1181,8 +1181,8 @@ start_master() $NOT_FIRST_MASTER_EXTRA_OPTS" fi - CUR_MYERR=$MASTER_MYERR - CUR_MYSOCK=$MASTER_MYSOCK + CUR_MYERR=$MASTER_MYERR$1 + CUR_MYSOCK=$MASTER_MYSOCK$1 # For embedded server we collect the server flags and return if [ "x$USE_EMBEDDED_SERVER" = "x1" ] ; then |