X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/4663602deda7a8c90d59c8d3a57cd5a3945d73ca..7851ddf7c04bce0c49ff70b7a9e75eab9969df7b:/validation.py diff --git a/validation.py b/validation.py index bb459bf..07b3f3d 100644 --- a/validation.py +++ b/validation.py @@ -37,6 +37,9 @@ def maxMemory(user, machine=None, on=True): memory for the machine to change to, if it is left off, is returned. """ + if machine is not None and machine.memory > MAX_MEMORY_SINGLE: + # If they've been blessed, let them have it + return machine.memory if not on: return MAX_MEMORY_SINGLE machines = getMachinesByOwner(user, machine)