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] Don't try and print out the info returned by the server

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Don't try and print out the info returned by the server after a restore -- there
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 07 Dec 2005 19:46:07 +0000
Delivery-date: Wed, 07 Dec 2005 19:46:39 +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 b215584242c43415eccd008b90c812f3d04b398d
# Parent  77d01909546d809b94f107dbbb0dd7cd1477181e
Don't try and print out the info returned by the server after a restore -- there
isn't any.  Don't try and unpause the restored domain either -- XendCheckpoint
does that.

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

diff -r 77d01909546d -r b215584242c4 tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py       Wed Dec  7 16:25:13 2005
+++ b/tools/python/xen/xm/main.py       Wed Dec  7 16:26:07 2005
@@ -321,11 +321,7 @@
         sys.exit(1)
 
     from xen.xend.XendClient import server
-    info = server.xend_domain_restore(savefile)
-    PrettyPrint.prettyprint(info)
-    id = sxp.child_value(info, 'domid')
-    if id is not None:
-        server.xend_domain_unpause(domid)
+    server.xend_domain_restore(savefile)
 
 
 def getDomains(domain_names):

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Don't try and print out the info returned by the server after a restore -- there, Xen patchbot -unstable <=