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:43 +0100
commitcc985986f92186ef73b4dd54f20036f3b351b80e (patch)
tree4ef6f7ec362781bef54e2967713e6b10a08ea7de /bitbake
parent60d3f65d1c7ba248a9394edd07198818b0dee5ee (diff)
downloadpoky-cc985986f92186ef73b4dd54f20036f3b351b80e.tar.gz
bitbake: server/process: Fix note reference -> info
Its bb.note or logger.info, this avoids a backtrace. (Bitbake rev: 82c534ca1a1313de067b0d79c79857e89fa2764a) 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()