diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-13 17:01:16 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:04 +0100 |
commit | 2448df7d115eaadd6c17d313e934f76a081f99ef (patch) | |
tree | fd927ea506fa3633246363e81e890e7e0899521b | |
parent | 7cd768061b69baa963a8165d4f227fc210a0201f (diff) | |
download | poky-2448df7d115eaadd6c17d313e934f76a081f99ef.tar.gz |
bitbake: xmlrpc: add parameter use_builtin_types
Added use_builtin_types parameter to XMLRPCProxyServer.__init__
to fix this error:
ERROR: Could not connect to server 0.0.0.0:37132
: __init__() got an unexpected keyword argument 'use_builtin_types'
(Bitbake rev: ceb6e5bd33a25c45c2afe1559b9394c466db8a92)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/server/xmlrpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/xmlrpc.py b/bitbake/lib/bb/server/xmlrpc.py index 146ca17b51..57c59a82dd 100644 --- a/bitbake/lib/bb/server/xmlrpc.py +++ b/bitbake/lib/bb/server/xmlrpc.py | |||
@@ -180,7 +180,7 @@ class XMLRPCProxyServer(BaseImplServer): | |||
180 | """ not a real working server, but a stub for a proxy server connection | 180 | """ not a real working server, but a stub for a proxy server connection |
181 | 181 | ||
182 | """ | 182 | """ |
183 | def __init__(self, host, port): | 183 | def __init__(self, host, port, use_builtin_types=True): |
184 | self.host = host | 184 | self.host = host |
185 | self.port = port | 185 | self.port = port |
186 | 186 | ||