WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fix start_time parsing on restart -- it's a float, not a

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Fix start_time parsing on restart -- it's a float, not an int.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 08 Dec 2005 19:12:09 +0000
Delivery-date: Thu, 08 Dec 2005 19:13:18 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User emellor@xxxxxxxxxxxxxxxxxxxxxx
# Node ID fa1a93f3a322ee47d208e8050ca6dc3a6847917c
# Parent  669b6252deeef90a0026a18d950feb0852df0df1
Fix start_time parsing on restart -- it's a float, not an int.

Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>

diff -r 669b6252deee -r fa1a93f3a322 tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py   Thu Dec  8 12:14:33 2005
+++ b/tools/python/xen/xend/XendDomainInfo.py   Thu Dec  8 14:28:53 2005
@@ -142,7 +142,7 @@
     ('vcpu_avail', int),
     ('memory',     int),
     ('maxmem',     int),
-    ('start_time', int),
+    ('start_time', float),
     ]
 
 VM_STORE_ENTRIES += VM_CONFIG_PARAMS

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix start_time parsing on restart -- it's a float, not an int., Xen patchbot -unstable <=