diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-10 17:23:05 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:04 +0100 |
commit | de21205d3d1cb1994d94fea79d024b0e293781bd (patch) | |
tree | 014b614fffb312034204d311c1ac237690949f9c /bitbake/lib/toaster/bldcontrol | |
parent | 5074c600f3133cf1f89b4cc0e3b61a6d8fd2236e (diff) | |
download | poky-de21205d3d1cb1994d94fea79d024b0e293781bd.tar.gz |
bitbake: toaster: moved import bb.server.xmlrpc
Moved import xmlrpc module to the place where it's used
to avoid toaster crashes when importing bitbake code.
NOTE: This patch is made to be able to partly test toaster
with bitbake from master. It can be removed as soon as bb.server.xmlrpc
is ported to python 3.
(Bitbake rev: 0c5d691746fb02807568a8a470969a0b68e21915)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/bbcontroller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/bbcontroller.py b/bitbake/lib/toaster/bldcontrol/bbcontroller.py index 9bddadbf19..912f67bf8c 100644 --- a/bitbake/lib/toaster/bldcontrol/bbcontroller.py +++ b/bitbake/lib/toaster/bldcontrol/bbcontroller.py | |||
@@ -30,7 +30,6 @@ from bldcontrol.models import BuildEnvironment, BRLayer, BRVariable, BRTarget, B | |||
30 | # load Bitbake components | 30 | # load Bitbake components |
31 | path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) | 31 | path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) |
32 | sys.path.insert(0, path) | 32 | sys.path.insert(0, path) |
33 | import bb.server.xmlrpc | ||
34 | 33 | ||
35 | class BitbakeController(object): | 34 | class BitbakeController(object): |
36 | """ This is the basic class that controlls a bitbake server. | 35 | """ This is the basic class that controlls a bitbake server. |
@@ -38,6 +37,7 @@ class BitbakeController(object): | |||
38 | """ | 37 | """ |
39 | 38 | ||
40 | def __init__(self, be): | 39 | def __init__(self, be): |
40 | import bb.server.xmlrpc | ||
41 | self.connection = bb.server.xmlrpc._create_server(be.bbaddress, | 41 | self.connection = bb.server.xmlrpc._create_server(be.bbaddress, |
42 | int(be.bbport))[0] | 42 | int(be.bbport))[0] |
43 | 43 | ||