From f96f84a81d6b9cba763f9ccee30a51754da074ee Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 22 May 2014 16:39:22 +0200 Subject: [PATCH] remove warning that is mor econfusing than helpful --- system/Substrate.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/system/Substrate.py b/system/Substrate.py index 066fbc3..cca7b5e 100644 --- a/system/Substrate.py +++ b/system/Substrate.py @@ -727,9 +727,13 @@ class QemuBox (Box): timestamp=int(timestamp) q=self.qemu_instance_by_nodename_buildname(nodename,buildname) if not q: - print 'WARNING zombie qemu',self.hostname,ts_line - print '... was expecting (',short_hostname(nodename),buildname,') in',\ - [ (short_hostname(i.nodename),i.buildname) for i in self.qemu_instances ] + # this warning corresponds to qemu instances that were not killed properly + # and that have a dangling qemu.pid - and not even all of them as they need + # to be attached to a build that has a node running... + # it is more confusing than helpful, so let's just trash it + #print 'WARNING zombie qemu',self.hostname,ts_line + #print '... was expecting (',short_hostname(nodename),buildname,') in',\ + # [ (short_hostname(i.nodename),i.buildname) for i in self.qemu_instances ] continue q.set_timestamp(timestamp) except: print 'WARNING, could not parse ts line',ts_line -- 2.43.0