Ugh smaller treshold because people have exactly 500MB ...

This commit is contained in:
Alexandre Aubin 2020-05-11 00:43:58 +02:00
parent 2205515d35
commit 429df8c43f

View file

@ -47,7 +47,7 @@ class SystemResourcesDiagnoser(Diagnoser):
if swap.total <= 1 * MB:
item["status"] = "INFO"
item["summary"] = "diagnosis_swap_none"
elif swap.total < 500 * MB:
elif swap.total < 450 * MB:
item["status"] = "INFO"
item["summary"] = "diagnosis_swap_notsomuch"
else: