projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add graphs of network usage by VMs.
[invirt/packages/invirt-web.git]
/
code
/
main.py
diff --git
a/code/main.py
b/code/main.py
index
b712696
..
86da50e
100755
(executable)
--- a/
code/main.py
+++ b/
code/main.py
@@
-594,7
+594,11
@@
def modifyDict(username, state, machine_id, fields):
def infoDict(username, state, machine):
"""Get the variables used by info.tmpl."""
def infoDict(username, state, machine):
"""Get the variables used by info.tmpl."""
- status = controls.statusInfo(machine)
+ try:
+ status = controls.statusInfo(machine)
+ except CodeError, e:
+ # machine was shut down in between the call to listInfoDict and this
+ status = None
has_vnc = hasVnc(status)
if status is None:
main_status = dict(name=machine.name,
has_vnc = hasVnc(status)
if status is None:
main_status = dict(name=machine.name,