Config: Reduce minimum memory requirement to 2 GB
see #1135, #1390, and #1397
This commit is contained in:
parent
32458b5afa
commit
c8b82d2ba4
1 changed files with 3 additions and 3 deletions
|
@ -45,13 +45,13 @@ const ApiUri = "/api/v1"
|
|||
const StaticUri = "/static"
|
||||
|
||||
// Megabyte in bytes.
|
||||
const Megabyte = 1024 * 1024
|
||||
const Megabyte = 1000 * 1000
|
||||
|
||||
// Gigabyte in bytes.
|
||||
const Gigabyte = Megabyte * 1024
|
||||
const Gigabyte = Megabyte * 1000
|
||||
|
||||
// MinMem is the minimum amount of system memory required.
|
||||
const MinMem = 3 * Gigabyte
|
||||
const MinMem = 2 * Gigabyte
|
||||
|
||||
// RecommendedMem is the recommended amount of system memory.
|
||||
const RecommendedMem = 5 * Gigabyte
|
||||
|
|
Loading…
Reference in a new issue