revert r714 for speed
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-listvms
index 45d6e59..04dfc20 100755 (executable)
@@ -14,7 +14,10 @@ def live_vms():
     vms = dict()
 
     for domid in domids:
-        name, data = get_dom(int(domid))
+        try:
+            name, data = get_dom(int(domid))
+        except TypeError:
+            continue # went down since we started
         if name.startswith('d_'):
             name = name[2:]
             vms[name] = data
@@ -43,4 +46,4 @@ if __name__ == '__main__':
         cPickle.dump(vms, sys.stdout, cPickle.HIGHEST_PROTOCOL)
     else:
         import yaml
-        print yaml.dump(vms, Dumper=yaml.CDumper, default_flow_style=False)
+        print yaml.dump(vms, Dumper=yaml.CSafeDumper, default_flow_style=False)