projects
/
invirt/packages/invirt-web.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3265b1
)
Allow service maintainers to bump memory
author
Quentin Smith
<quentin@mit.edu>
Tue, 11 Dec 2007 07:01:56 +0000
(
02:01
-0500)
committer
Quentin Smith
<quentin@mit.edu>
Tue, 11 Dec 2007 07:01:56 +0000
(
02:01
-0500)
svn path=/trunk/web/; revision=250
validation.py
patch
|
blob
|
history
diff --git
a/validation.py
b/validation.py
index
bb459bf
..
5443d54
100644
(file)
--- a/
validation.py
+++ b/
validation.py
@@
-39,6
+39,9
@@
def maxMemory(user, machine=None, on=True):
"""
if not on:
return MAX_MEMORY_SINGLE
+ if machine.memory > MAX_MEMORY_SINGLE:
+ # If they've been blessed, let them have it
+ return machine.memory
machines = getMachinesByOwner(user, machine)
active_machines = [x for x in machines if g.uptimes[x]]
mem_usage = sum([x.memory for x in active_machines if x != machine])