summaryrefslogtreecommitdiffstats
path: root/ipalib/rpc.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-09-10 16:11:16 -0400
committerRob Crittenden <rcritten@redhat.com>2009-09-14 09:46:42 -0400
commitbb09db2228694cd78b5e4e281109e55df9de97be (patch)
treeaac1d6cdb18f12c36cc0f73bb0872cffc6f52cd9 /ipalib/rpc.py
parenteca7cdc94a8377237533259755a19b75c313bd99 (diff)
downloadfreeipa-bb09db2228694cd78b5e4e281109e55df9de97be.tar.gz
freeipa-bb09db2228694cd78b5e4e281109e55df9de97be.tar.xz
freeipa-bb09db2228694cd78b5e4e281109e55df9de97be.zip
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.
Diffstat (limited to 'ipalib/rpc.py')
-rw-r--r--ipalib/rpc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipalib/rpc.py b/ipalib/rpc.py
index 6d8093a13..62f1d7762 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):