diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-10-10 05:23:00 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-10-10 05:23:00 -0400 |
commit | 75bad44c27bff471c03ddc86283506f53f47520c (patch) | |
tree | 9e29a8a22935c2afee808eb10643ebf70ae24ab6 /ipalib/plugins/b_xmlrpc.py | |
parent | 42cdca3e8340c9aae721d582a522b7991ea38050 (diff) | |
download | freeipa.git-75bad44c27bff471c03ddc86283506f53f47520c.tar.gz freeipa.git-75bad44c27bff471c03ddc86283506f53f47520c.tar.xz freeipa.git-75bad44c27bff471c03ddc86283506f53f47520c.zip |
Enable the verbose flag to pass thru xmlrpc
Diffstat (limited to 'ipalib/plugins/b_xmlrpc.py')
-rw-r--r-- | ipalib/plugins/b_xmlrpc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/plugins/b_xmlrpc.py b/ipalib/plugins/b_xmlrpc.py index da76aa2b..618f8385 100644 --- a/ipalib/plugins/b_xmlrpc.py +++ b/ipalib/plugins/b_xmlrpc.py @@ -36,15 +36,15 @@ class xmlrpc(Backend): Kerberos backend plugin. """ - def get_client(self): + def get_client(self, verbose=False): # FIXME: The server uri should come from self.api.env.server_uri - return xmlrpclib.ServerProxy('http://localhost:8888', allow_none=True) + return xmlrpclib.ServerProxy('http://localhost:8888', verbose=verbose) def forward_call(self, name, *args, **kw): """ Forward a call over XML-RPC to an IPA server. """ - client = self.get_client() + client = self.get_client(verbose=api.env.get('verbose', False)) command = getattr(client, name) params = xmlrpc_marshal(*args, **kw) try: |