Merge pull request #299 from greg-kennedy/patch-1
Do not test skip_name_resolve if skip_networking is ON
This commit is contained in:
commit
3d8b33e51d
1 changed files with 5 additions and 1 deletions
|
@ -2769,7 +2769,11 @@ sub mysql_stats {
|
||||||
}
|
}
|
||||||
|
|
||||||
# name resolution
|
# name resolution
|
||||||
if ( not defined( $result{'Variables'}{'skip_name_resolve'} ) ) {
|
if ( defined( $result{'Variables'}{'skip_networking'} ) && $result{'Variables'}{'skip_networking'} eq 'ON' ) {
|
||||||
|
infoprint
|
||||||
|
"Skipped name resolution test due to skip_networking=ON in system variables.";
|
||||||
|
}
|
||||||
|
elsif ( not defined( $result{'Variables'}{'skip_name_resolve'} ) ) {
|
||||||
infoprint
|
infoprint
|
||||||
"Skipped name resolution test due to missing skip_name_resolve in system variables.";
|
"Skipped name resolution test due to missing skip_name_resolve in system variables.";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue