pull/7928/head
Sharif Elgamal 2020-04-28 10:18:33 -07:00
parent e61a18cbaa
commit b116cd15bb
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ func suggestMemoryAllocation(sysLimit int, containerLimit int) int {
suggested := int(float32(sysLimit)/400.0) * 100
if nodes := viper.GetInt(nodes); nodes > 1 {
suggested = suggested / nodes
suggested /= nodes
}
if suggested > maximum {