Skip to content

Commit

Permalink
Correct physical memory comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Murl080 authored Oct 9, 2023
1 parent 9da06cb commit 34e642e
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 34e642e

Please sign in to comment.