summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-24 14:10:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-24 14:15:23 +0100
commitb7514340cd6a2753eb217b059229bb279c3849ec (patch)
treec9d9e6bbec4e606c0df39df9ebffbc07040b808e
parentc0ddde7cf680225127d6285685652b905ed176c3 (diff)
downloadbitbake-contrib-b7514340cd6a2753eb217b059229bb279c3849ec.tar.gz
process: Change timeout warning to a note
The warning message currently shown can occur more frequently than previously if a previous bitbake server is shutting down and we're reconnecting to a new server. Change it to a note message to match the higher level connection logging retry messages and so as not to interfer with selftests. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 85beaae01..1975bd445 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -312,7 +312,7 @@ class ServerCommunicator():
if self.recv.poll(1):
return self.recv.get()
else:
- bb.warn("Timeout while attempting to communicate with bitbake server")
+ bb.note("Timeout while attempting to communicate with bitbake server, retrying...")
raise ProcessTimeout("Gave up; Too many tries: timeout while attempting to communicate with bitbake server")
except KeyboardInterrupt:
pass