All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] server/process: Fix note reference -> info
@ 2020-07-20 19:29 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2020-07-20 19:29 UTC (permalink / raw)
  To: bitbake-devel

Its bb.note or logger.info, this avoids a backtrace.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 lib/bb/server/process.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index d4beac4379..9ec79f5b64 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -342,7 +342,7 @@ class ServerCommunicator():
     def runCommand(self, command):
         self.connection.send(command)
         if not self.recv.poll(30):
-            logger.note("No reply from server in 30s")
+            logger.info("No reply from server in 30s")
             if not self.recv.poll(30):
                 raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
         return self.recv.get()
-- 
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-20 19:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-20 19:29 [PATCH] server/process: Fix note reference -> info Richard Purdie

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.