Skip to content

Commit

Permalink
Merge pull request #738 from Murl080/patch-1
Browse files Browse the repository at this point in the history
Correct physical memory comparison
  • Loading branch information
jmrenouard committed Oct 9, 2023
2 parents 9da06cb + 34e642e commit da9c37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2028,7 +2028,7 @@ sub system_recommendations {
"Consider increasing number of CPU for your database server";
}

if ( $physical_memory < 1600 ) {
if ( $physical_memory >= 1.5 * 1024 ) {
goodprint "There is at least 1 Gb of RAM dedicated to Linux server.";
}
else {
Expand Down

0 comments on commit da9c37b

Please sign in to comment.