From: Anthony Liguori <aliguori@us.ibm.com>
To: xen-devel@lists.xensource.com
Cc: Ewan Mellor <ewan@xensource.com>
Subject: Re: [Xen-changelog] Removed unused handler parameter from UnixXMLRPCServer interface -- just pass
Date: Thu, 23 Mar 2006 13:59:09 -0600 [thread overview]
Message-ID: <4422FE0D.6020109@us.ibm.com> (raw)
In-Reply-To: <E1FMQAc-0001Ei-AW@xenbits.xensource.com>
Xen patchbot -unstable wrote:
> # HG changeset patch
> # User emellor@leeni.uk.xensource.com
> # Node ID d52a93ee4624b0fae694353251622af2eb51dabc
> # Parent 8afbc25861219578fae30cc2a9bd60bf2ab26349
> Removed unused handler parameter from UnixXMLRPCServer interface -- just pass
> UnixXMLRPCRequestHandler through to TCPXMLRPCServer.
>
> Do not log requests -- this fills up xend-debug.log uselessly.
>
> Signed-off-by: Ewan Mellor <ewan@xensource.com>
>
> diff -r 8afbc2586121 -r d52a93ee4624 tools/python/xen/xend/server/XMLRPCServer.py
> --- a/tools/python/xen/xend/server/XMLRPCServer.py Thu Mar 23 10:30:33 2006
> +++ b/tools/python/xen/xend/server/XMLRPCServer.py Thu Mar 23 10:40:43 2006
> @@ -13,6 +13,7 @@
> # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
> #============================================================================
> # Copyright (C) 2006 Anthony Liguori <aliguori@us.ibm.com>
> +# Copyright (C) 2006 XenSource Ltd
> #============================================================================
>
> from xen.xend import XendDomain, XendDomainInfo, XendNode, \
> @@ -69,9 +70,9 @@
> if self.use_tcp:
> # bind to something fixed for now as we may eliminate
> # tcp support completely.
> - self.server = TCPXMLRPCServer(("localhost", 8005))
> + self.server = TCPXMLRPCServer(("localhost", 8005, False))
>
This should be:
self.server = TCPXMLRPCServer(("localhost", 8005), False)
Regards,
Anthony Liguori
> else:
> - self.server = UnixXMLRPCServer(XML_RPC_SOCKET)
> + self.server = UnixXMLRPCServer(XML_RPC_SOCKET, False)
>
> # Functions in XendDomainInfo
> for name in methods:
>
> _______________________________________________
> Xen-changelog mailing list
> Xen-changelog@lists.xensource.com
> http://lists.xensource.com/xen-changelog
>
next parent reply other threads:[~2006-03-23 19:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <E1FMQAc-0001Ei-AW@xenbits.xensource.com>
2006-03-23 19:59 ` Anthony Liguori [this message]
2006-03-23 20:05 ` Re: [Xen-changelog] Removed unused handler parameter from UnixXMLRPCServer interface -- just pass Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4422FE0D.6020109@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=ewan@xensource.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.