Fix #190 changing typo for recommandations on multiprocessor

This commit is contained in:
root 2016-04-29 14:01:15 +02:00
parent 1727a42b29
commit 2e2d945e63

View file

@ -2494,12 +2494,12 @@ sub mysql_stats {
elsif ( mysql_version_ge( 5, 5 ) and !mysql_version_ge( 10, 1 ) ) { elsif ( mysql_version_ge( 5, 5 ) and !mysql_version_ge( 10, 1 ) ) {
if ( $myvar{'query_cache_type'} ne "OFF" ) { if ( $myvar{'query_cache_type'} ne "OFF" ) {
badprint badprint
"Query cache should be disabled by default due to mutex contention."; "Query cache may be disabled by default due to mutex contention.";
push( @adjvars, "query_cache_type (=0)" ); push( @adjvars, "query_cache_type (=0)" );
} }
else { else {
goodprint goodprint
"Query cache is disabled by default due to mutex contention."; "Query cache is disabled by default due to mutex contention on multiprocessor machines.";
} }
} }
elsif ( $myvar{'query_cache_size'} < 1 ) { elsif ( $myvar{'query_cache_size'} < 1 ) {