summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/b_xmlrpc.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/b_xmlrpc.py')
-rw-r--r--ipalib/plugins/b_xmlrpc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipalib/plugins/b_xmlrpc.py b/ipalib/plugins/b_xmlrpc.py
index 22361b1b..b6e113a5 100644
--- a/ipalib/plugins/b_xmlrpc.py
+++ b/ipalib/plugins/b_xmlrpc.py
@@ -51,14 +51,15 @@ class xmlrpc(Backend):
if uri.startswith('https://'):
return xmlrpclib.ServerProxy(uri,
transport=KerbTransport(),
- verbose=self.api.env.verbose,
+ #verbose=self.api.env.verbose,
)
- return xmlrpclib.ServerProxy(uri, verbose=self.api.env.verbose)
+ return xmlrpclib.ServerProxy(uri)
def forward_call(self, name, *args, **kw):
"""
Forward a call over XML-RPC to an IPA server.
"""
+ self.info('Forwarding %r call to %r' % (name, self.env.xmlrpc_uri))
client = self.get_client()
command = getattr(client, name)
params = xmlrpc_marshal(*args, **kw)