summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index f03f16b3f8..daa00a45d0 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -141,11 +141,7 @@ class BBCooker:
141 self.parser = None 141 self.parser = None
142 142
143 def initConfigurationData(self): 143 def initConfigurationData(self):
144 worker = False 144 self.databuilder = bb.cookerdata.CookerDataBuilder(self.configuration, False)
145 if not self.configuration.server_register_idlecallback:
146 worker = True
147
148 self.databuilder = bb.cookerdata.CookerDataBuilder(self.configuration, worker)
149 self.data = self.databuilder.data 145 self.data = self.databuilder.data
150 146
151 def enableDataTracking(self): 147 def enableDataTracking(self):