From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Thu, 22 May 2014 14:39:22 +0000 (+0200)
Subject: remove warning that is mor econfusing than helpful
X-Git-Tag: tests-5.3-5~8
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=f96f84a81d6b9cba763f9ccee30a51754da074ee;p=tests.git

remove warning that is mor econfusing than helpful
---

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