Skip to content

Commit

Permalink
Add new steps to the interpolation (bugfix) (#1410)
Browse files Browse the repository at this point in the history
Add new steps to the interpolation
  • Loading branch information
Hook25 authored Aug 9, 2024
1 parent 22dd927 commit dfae162
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions providers/base/bin/memory_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ def get_threshold(installed_memory):
return 25
elif installed_memory <= 6 * GB:
return 20
elif installed_memory <= 8 * GB:
return 15
elif installed_memory <= 16 * GB:
return 12
else:
return 10

Expand Down

0 comments on commit dfae162

Please sign in to comment.