From bb09db2228694cd78b5e4e281109e55df9de97be Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 10 Sep 2009 16:11:16 -0400 Subject: Explicitly set verbosity off in the XML-RPC client This is so I don't have to hunt for where to set this to True when doing low-level client debugging. --- ipalib/rpc.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/rpc.py') diff --git a/ipalib/rpc.py b/ipalib/rpc.py index 6d8093a1..62f1d776 100644 --- a/ipalib/rpc.py +++ b/ipalib/rpc.py @@ -378,6 +378,7 @@ class xmlclient(Connectible): kw = dict(allow_none=True, encoding='UTF-8') if self.env.xmlrpc_uri.startswith('https://'): kw['transport'] = KerbTransport() + kw['verbose'] = False return ServerProxy(self.env.xmlrpc_uri, **kw) def destroy_connection(self): -- cgit