summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index bd11619966..a1226886c0 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -468,7 +468,8 @@ def setup_bitbake(configParams, configuration, extrafeatures=None):
468 else: 468 else:
469 logger.info("Retrying server connection (#%d)... (%s)" % (tryno, traceback.format_exc())) 469 logger.info("Retrying server connection (#%d)... (%s)" % (tryno, traceback.format_exc()))
470 if not retries: 470 if not retries:
471 bb.fatal("Unable to connect to bitbake server, or start one") 471 bb.fatal("Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).")
472 bb.event.print_ui_queue()
472 if retries < 5: 473 if retries < 5:
473 time.sleep(5) 474 time.sleep(5)
474 475