Merge pull request #738 from Murl080/patch-1

Correct physical memory comparison
This commit is contained in:
Jean-Marie Renouard 2023-10-09 15:12:13 +02:00 committed by GitHub
commit da9c37b2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {