diff options
author | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2019-07-09 16:54:08 +0200 |
---|---|---|
committer | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2019-07-15 17:26:53 +0200 |
commit | aa96e56c55c44d2c20c1cd70325ef88ad0af8f98 (patch) | |
tree | f3624d49ebe0ca9ba41f387d6e99fdc46a02f306 /mysql-test/lib | |
parent | 06ad00a4784771a14ab0c487aa4bd4366cd571c7 (diff) | |
download | mariadb-git-aa96e56c55c44d2c20c1cd70325ef88ad0af8f98.tar.gz |
Improved error messages and added another path to the version check utility
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/SafeProcess.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/lib/My/SafeProcess.pm b/mysql-test/lib/My/SafeProcess.pm index de63218d441..87054019759 100644 --- a/mysql-test/lib/My/SafeProcess.pm +++ b/mysql-test/lib/My/SafeProcess.pm @@ -123,8 +123,8 @@ sub find_bin { } # Wsrep version check utility: $wsrep_check_version= - my_find_bin($bindir, "lib/My/SafeProcess", "wsrep_check_version", - NOT_REQUIRED); + my_find_bin($bindir, ["lib/My/SafeProcess", "My/SafeProcess"], + "wsrep_check_version", NOT_REQUIRED); } |