From 4e4f040a73ca81f830cf90af05b75e7c06f91d8d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 9 Jan 2023 16:37:06 +0000 Subject: bitbake: 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. (Bitbake rev: 4a41a7d0594e6a84a67b9de70a505858aebcd84a) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 9 --------- 1 file changed, 9 deletions(-) (limited to 'bitbake/lib/bb/cooker.py') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index d2c42c858d..13d6e9d847 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/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() -- cgit v1.2.3-54-g00ecf