Fix innodb_log_buffer_size
message
The operator used to recommend the user to increase the log buffer size (`>=`) is confusing. Closes #567 (which includes a detailed description).
This commit is contained in:
parent
d04c1c46dc
commit
85d7d6b6a8
1 changed files with 1 additions and 1 deletions
|
@ -5985,7 +5985,7 @@ sub mysql_innodb {
|
|||
. $mystat{'Innodb_log_writes'}
|
||||
. " writes)";
|
||||
push( @adjvars,
|
||||
"innodb_log_buffer_size (>= "
|
||||
"innodb_log_buffer_size (> "
|
||||
. hr_bytes_rnd( $myvar{'innodb_log_buffer_size'} )
|
||||
. ")" );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue