mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 20:15:38 +00:00
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>
This commit is contained in:
parent
60d3f65d1c
commit
cc985986f9
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user