summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-12 17:08:36 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-21 16:57:48 +0100
commitb24605d8a44aac37513cae610409107652e710d6 (patch)
tree0bf958b2a44c5d4fbef350a76e11a14fe98f37b7 /bitbake
parent1d0206a7b291df70c2a3df976176bd76bb8be0aa (diff)
downloadpoky-b24605d8a44aac37513cae610409107652e710d6.tar.gz
bitbake: server/process: Fix note reference -> info
Its bb.note or logger.info, this avoids a backtrace. (Bitbake rev: fb80389d2ce62e15e354c6ea288c9a4bbe0040f6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index d4beac4379..9ec79f5b64 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -342,7 +342,7 @@ class ServerCommunicator():
342 def runCommand(self, command): 342 def runCommand(self, command):
343 self.connection.send(command) 343 self.connection.send(command)
344 if not self.recv.poll(30): 344 if not self.recv.poll(30):
345 logger.note("No reply from server in 30s") 345 logger.info("No reply from server in 30s")
346 if not self.recv.poll(30): 346 if not self.recv.poll(30):
347 raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)") 347 raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
348 return self.recv.get() 348 return self.recv.get()