mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Ugh smaller treshold because people have exactly 500MB ...
This commit is contained in:
parent
2205515d35
commit
429df8c43f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue