diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/monitordisk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py index c6d0767324..3e6ecbd4e2 100644 --- a/bitbake/lib/bb/monitordisk.py +++ b/bitbake/lib/bb/monitordisk.py | |||
@@ -225,7 +225,7 @@ class diskMonitor: | |||
225 | self.preFreeS[k] = freeSpace | 225 | self.preFreeS[k] = freeSpace |
226 | 226 | ||
227 | if action == "STOPTASKS" and not self.checked[k]: | 227 | if action == "STOPTASKS" and not self.checked[k]: |
228 | logger.error("No new tasks can be excuted since the disk space monitor action is \"STOPTASKS\"!") | 228 | logger.error("No new tasks can be executed since the disk space monitor action is \"STOPTASKS\"!") |
229 | self.checked[k] = True | 229 | self.checked[k] = True |
230 | rq.finish_runqueue(False) | 230 | rq.finish_runqueue(False) |
231 | bb.event.fire(bb.event.DiskFull(dev, 'disk', freeSpace, path), self.configuration) | 231 | bb.event.fire(bb.event.DiskFull(dev, 'disk', freeSpace, path), self.configuration) |
@@ -253,7 +253,7 @@ class diskMonitor: | |||
253 | self.preFreeI[k] = freeInode | 253 | self.preFreeI[k] = freeInode |
254 | 254 | ||
255 | if action == "STOPTASKS" and not self.checked[k]: | 255 | if action == "STOPTASKS" and not self.checked[k]: |
256 | logger.error("No new tasks can be excuted since the disk space monitor action is \"STOPTASKS\"!") | 256 | logger.error("No new tasks can be executed since the disk space monitor action is \"STOPTASKS\"!") |
257 | self.checked[k] = True | 257 | self.checked[k] = True |
258 | rq.finish_runqueue(False) | 258 | rq.finish_runqueue(False) |
259 | bb.event.fire(bb.event.DiskFull(dev, 'inode', freeInode, path), self.configuration) | 259 | bb.event.fire(bb.event.DiskFull(dev, 'inode', freeInode, path), self.configuration) |