From: Richard Purdie Date: Mon, 24 Jul 2017 13:10:58 +0000 (+0100) Subject: bitbake: process: Change timeout warning to a note X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33b73b2d791716485f48ff56b57ce03b05174410;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: 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. (Bitbake rev: b7514340cd6a2753eb217b059229bb279c3849ec) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 85beaae014c..1975bd445fe 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/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