You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: cmd/start/start.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -420,27 +420,27 @@ func (s *Start) allocateMemory(isoConfig iso.Metadata, requestedMem int) (int, e
420
420
}
421
421
422
422
ifavailableMem<uint64(requestedMem) {
423
-
s.UI.Say("WARNING: This machine does not have enough available RAM to run with what is specified.")
423
+
s.UI.Say("WARNING: This machine may not have enough available RAM to run with what is specified.")
424
424
returnrequestedMem, nil
425
425
}
426
426
}
427
427
428
428
ifrequestedMem<baseMem {
429
-
s.UI.Say(fmt.Sprintf("WARNING: It is recommended that you run %s Dev with at least %v MB of RAM", strings.ToUpper(isoConfig.DeploymentName), baseMem))
429
+
s.UI.Say(fmt.Sprintf("WARNING: It is recommended that you run %s Dev with at least %v MB of RAM.", strings.ToUpper(isoConfig.DeploymentName), baseMem))
430
430
ifavailableMem>=uint64(requestedMem) {
431
431
returnrequestedMem, nil
432
432
}
433
433
434
434
ifavailableMem<uint64(requestedMem) {
435
-
s.UI.Say("WARNING: This machine does not have enough available RAM to run with what is specified.")
435
+
s.UI.Say("WARNING: This machine may not have enough available RAM to run with what is specified.")
436
436
returnrequestedMem, nil
437
437
}
438
438
}
439
439
} else {
440
440
ifavailableMem>=uint64(baseMem) {
441
441
returnbaseMem, nil
442
442
} else {
443
-
s.UI.Say("WARNING: This machine does not have enough available RAM to run with what is specified.")
443
+
s.UI.Say(fmt.Sprintf("WARNING: %s Dev requires %v MB of RAM to run. This machine may not have enough free RAM.", strings.ToUpper(isoConfig.DeploymentName), baseMem))
0 commit comments