summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/server/process.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 993ae66279..5654f60f9e 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -43,7 +43,8 @@ def currenttime():
43 43
44def serverlog(msg): 44def serverlog(msg):
45 print(str(os.getpid()) + " " + currenttime() + " " + msg) 45 print(str(os.getpid()) + " " + currenttime() + " " + msg)
46 sys.stdout.flush() 46 #Seems a flush here triggers filesytem sync like behaviour and long hangs in the server
47 #sys.stdout.flush()
47 48
48# 49#
49# When we have lockfile issues, try and find infomation about which process is 50# When we have lockfile issues, try and find infomation about which process is