diff options
-rw-r--r-- | bitbake/lib/bb/server/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 85beaae014..1975bd445f 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -312,7 +312,7 @@ class ServerCommunicator(): | |||
312 | if self.recv.poll(1): | 312 | if self.recv.poll(1): |
313 | return self.recv.get() | 313 | return self.recv.get() |
314 | else: | 314 | else: |
315 | bb.warn("Timeout while attempting to communicate with bitbake server") | 315 | bb.note("Timeout while attempting to communicate with bitbake server, retrying...") |
316 | raise ProcessTimeout("Gave up; Too many tries: timeout while attempting to communicate with bitbake server") | 316 | raise ProcessTimeout("Gave up; Too many tries: timeout while attempting to communicate with bitbake server") |
317 | except KeyboardInterrupt: | 317 | except KeyboardInterrupt: |
318 | pass | 318 | pass |