Comments
Patch
@@ -179,13 +179,6 @@ class CommandsSync:
"""
return bb.utils.cpu_count()
- def triggerEvent(self, command, params):
- """
- Trigger a certain event
- """
- event = params[0]
- bb.event.fire(eval(event), command.cooker.configuration.data)
-
class CommandsAsync:
"""
A class of asynchronous commands
@@ -359,3 +352,13 @@ class CommandsAsync:
command.cooker.parseConfigurationFiles(prefiles, postfiles)
command.finishAsyncCommand()
parseConfigurationFiles.needcache = False
+
+ def triggerEvent(self, command, params):
+ """
+ Trigger a certain event
+ """
+ event = params[0]
+ bb.event.fire(eval(event), command.cooker.configuration.data)
+ command.currentAsyncCommand = None
+ triggerEvent.needcache = False
+
The parameters in triggerEvent function is an event object, and it may cost some time to pass this object through pipe, causing the pipe's poll() function timeout. Change it to async mode. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/command.py | 17 ++++++++++------- 1 files changed, 10 insertions(+), 7 deletions(-)