* [PATCH 0/1] knotty.py: fix unknown event bb.event.DiskFull
@ 2013-02-01 8:56 Robert Yang
2013-02-01 8:56 ` [PATCH 1/1] " Robert Yang
0 siblings, 1 reply; 2+ messages in thread
From: Robert Yang @ 2013-02-01 8:56 UTC (permalink / raw)
To: bitbake-devel; +Cc: Zhenfeng.Zhao
The following changes since commit 8d80483e2f0f755a61087be1dffaf595fbc467fd:
bitbake: bitbake-layers: print the recipe's depends that crosses a layer boundary (2013-01-31 14:00:03 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib robert/knotty
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/knotty
Robert Yang (1):
knotty.py: fix unknown event bb.event.DiskFull
bitbake/lib/bb/ui/knotty.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
1.7.11.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] knotty.py: fix unknown event bb.event.DiskFull
2013-02-01 8:56 [PATCH 0/1] knotty.py: fix unknown event bb.event.DiskFull Robert Yang
@ 2013-02-01 8:56 ` Robert Yang
0 siblings, 0 replies; 2+ messages in thread
From: Robert Yang @ 2013-02-01 8:56 UTC (permalink / raw)
To: bitbake-devel; +Cc: Zhenfeng.Zhao
There is an error:
ERROR: No new tasks can be excuted since the disk space monitor action
is "STOPTASKS"!
ERROR: Unknown event: <bb.event.DiskFull object at 0x2ab6310>
This is because we don't handle the event bb.event.DiskFull in
knotty.py, we don't want the knotty to do anything here since we have
done everything in monitordisk.py, so just ignore this event would fix
the problem.
[YOCTO #3523]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
bitbake/lib/bb/ui/knotty.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py
index a2983ca..6834b83 100644
--- a/bitbake/lib/bb/ui/knotty.py
+++ b/bitbake/lib/bb/ui/knotty.py
@@ -453,7 +453,8 @@ def main(server, eventHandler, tf = TerminalFilter):
bb.runqueue.runQueueExitWait,
bb.event.OperationStarted,
bb.event.OperationCompleted,
- bb.event.OperationProgress)):
+ bb.event.OperationProgress,
+ bb.event.DiskFull)):
continue
logger.error("Unknown event: %s", event)
--
1.7.11.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-02-01 9:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-01 8:56 [PATCH 0/1] knotty.py: fix unknown event bb.event.DiskFull Robert Yang
2013-02-01 8:56 ` [PATCH 1/1] " Robert Yang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.