mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BUG#12416700: RPL_SHOW_SLAVE_HOSTS FAILS SPORADICALLY (TIMEOUT
IN WAIT_SHOW_CONDITION) There was a typo in the name of one of the parameters to the include file wait_show_condition. The parameter name was being set to "connection" instead of "condition". We fix this typo, improve one instruction in the test case and deploy parameter checks inside wait_show_condition.inc.
This commit is contained in:
@ -31,6 +31,21 @@
|
||||
# Created: 2009-02-18 mleich
|
||||
#
|
||||
|
||||
if (!$condition)
|
||||
{
|
||||
--die ERROR IN TEST: the "condition" variable must be set
|
||||
}
|
||||
|
||||
if (!$field)
|
||||
{
|
||||
--die ERROR IN TEST: the "field" variable must be set
|
||||
}
|
||||
|
||||
if (!$show_statement)
|
||||
{
|
||||
--die ERROR IN TEST: the "show_statement" variable must be set
|
||||
}
|
||||
|
||||
let $max_run_time= 30;
|
||||
if ($wait_timeout)
|
||||
{
|
||||
|
Reference in New Issue
Block a user