aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-09 16:37:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-11 10:57:54 +0000
commit4a41a7d0594e6a84a67b9de70a505858aebcd84a (patch)
tree4dbe9605a8c2b874498ac5a6c450774c96695994 /lib/bb/cooker.py
parent9257c48c3e36daaecb5e15da22d0bed24865f02c (diff)
downloadbitbake-4a41a7d0594e6a84a67b9de70a505858aebcd84a.tar.gz
cooker/command: Drop async command handler indirection via cooker
Indirecting the async command handler via cooker is confusing and no longer needed. Drop it to make things slightly clearer. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cooker.py')
-rw-r--r--lib/bb/cooker.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index d2c42c858..13d6e9d84 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -535,15 +535,6 @@ class BBCooker:
logger.debug("Base environment change, triggering reparse")
self.reset()
- def runCommands(self, server, data, halt):
- """
- Run any queued asynchronous command
- This is done by the idle handler so it runs in true context rather than
- tied to any UI.
- """
-
- return self.command.runAsyncCommand()
-
def showVersions(self):
(latest_versions, preferred_versions, required) = self.findProviders()