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 reference to HttpXendClientProtocol. This was previo

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Fix reference to HttpXendClientProtocol. This was previously referring to the
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 13 Dec 2005 19:38:11 +0000
Delivery-date: Tue, 13 Dec 2005 19:40:19 +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 7256d2425fa795556903b706beed870014c48406
# Parent  ef2fff896422a3133d0abb18cce3923eebb1c321
Fix reference to HttpXendClientProtocol.  This was previously referring to the
abstract base class, which was never going to work.  (This is debugging code
only, so I presume that no-one has used it for a long time, but it's doing no
harm hanging around.)

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

diff -r ef2fff896422 -r 7256d2425fa7 tools/python/xen/xend/XendClient.py
--- a/tools/python/xen/xend/XendClient.py       Tue Dec 13 10:57:18 2005
+++ b/tools/python/xen/xend/XendClient.py       Tue Dec 13 17:31:35 2005
@@ -354,7 +354,7 @@
 def getHttpServer(srv=None):
     """Create and return a xend client.
     """
-    return Xend(srv=srv, client=XendClientProtocol())
+    return Xend(srv=srv, client=HttpXendClientProtocol())
 
 def getUnixServer(srv=None):
     """Create and return a unix-domain xend client.

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix reference to HttpXendClientProtocol. This was previously referring to the, Xen patchbot -unstable <=