diff options
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/bbcontroller.py')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/bbcontroller.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/bbcontroller.py b/bitbake/lib/toaster/bldcontrol/bbcontroller.py index 6812ae3e6e..6bb45d6388 100644 --- a/bitbake/lib/toaster/bldcontrol/bbcontroller.py +++ b/bitbake/lib/toaster/bldcontrol/bbcontroller.py | |||
@@ -118,7 +118,7 @@ class BuildEnvironmentController(object): | |||
118 | self.connection = None | 118 | self.connection = None |
119 | 119 | ||
120 | 120 | ||
121 | def startBBServer(self): | 121 | def startBBServer(self, brbe): |
122 | """ Starts a BB server with Toaster toasterui set up to record the builds, an no controlling UI. | 122 | """ Starts a BB server with Toaster toasterui set up to record the builds, an no controlling UI. |
123 | After this method executes, self.be bbaddress/bbport MUST point to a running and free server, | 123 | After this method executes, self.be bbaddress/bbport MUST point to a running and free server, |
124 | and the bbstate MUST be updated to "started". | 124 | and the bbstate MUST be updated to "started". |
@@ -142,12 +142,12 @@ class BuildEnvironmentController(object): | |||
142 | raise Exception("Must override setLayers") | 142 | raise Exception("Must override setLayers") |
143 | 143 | ||
144 | 144 | ||
145 | def getBBController(self): | 145 | def getBBController(self, brbe): |
146 | """ returns a BitbakeController to an already started server; this is the point where the server | 146 | """ returns a BitbakeController to an already started server; this is the point where the server |
147 | starts if needed; or reconnects to the server if we can | 147 | starts if needed; or reconnects to the server if we can |
148 | """ | 148 | """ |
149 | if not self.connection: | 149 | if not self.connection: |
150 | self.startBBServer() | 150 | self.startBBServer(brbe) |
151 | self.be.lock = BuildEnvironment.LOCK_RUNNING | 151 | self.be.lock = BuildEnvironment.LOCK_RUNNING |
152 | self.be.save() | 152 | self.be.save() |
153 | 153 | ||