[gnome-continuous-yocto/gnomeostree-3.28-rocko: 1210/8267] bitbake: progress: Ensure missing start event is fired



commit b30125166836f93f24bd20ed09547cd54db5ed58
Author: Richard Purdie <richard purdie linuxfoundation org>
Date:   Thu Jul 7 14:27:43 2016 +0100

    bitbake: progress: Ensure missing start event is fired
    
    The init function of the parent class fires a progress event for 0
    progress rather than a start event. UI code was assuming that progress
    events should always have a start event first. This change ensures that
    the start event is correctly generated.
    
    This fixes crashes that were seen in knotty in some configurations.
    
    (Bitbake rev: 9841651e050a3e9f395ab3c62545c51197734584)
    
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 bitbake/lib/bb/progress.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/bitbake/lib/bb/progress.py b/bitbake/lib/bb/progress.py
index 4941776..ee6b953 100644
--- a/bitbake/lib/bb/progress.py
+++ b/bitbake/lib/bb/progress.py
@@ -209,6 +209,9 @@ class MultiStageProcessProgressReporter(MultiStageProgressReporter):
         bb.event.fire(bb.event.ProcessStarted(self._processname, 100), self._data)
 
     def _fire_progress(self, taskprogress):
+        if taskprogress == 0:
+            self.start()
+            return
         bb.event.fire(bb.event.ProcessProgress(self._processname, taskprogress), self._data)
 
     def finish(self):


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]