chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f0a376
)
Don't busy-wait on buildserver output
author
Ciaran Gultnieks
<ciaran@ciarang.com>
Tue, 7 Jan 2014 13:39:05 +0000
(13:39 +0000)
committer
Ciaran Gultnieks
<ciaran@ciarang.com>
Tue, 7 Jan 2014 13:40:02 +0000
(13:40 +0000)
fdroidserver/build.py
patch
|
blob
|
history
diff --git
a/fdroidserver/build.py
b/fdroidserver/build.py
index 483375e53c70124a787e03d47ea0537121989771..e244e2df27e35276d153f1ffd91176f97b5d41c2 100644
(file)
--- a/
fdroidserver/build.py
+++ b/
fdroidserver/build.py
@@
-332,6
+332,7
@@
def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
output += chan.recv(1024)
while chan.recv_stderr_ready():
error += chan.recv_stderr(1024)
+ time.sleep(0.1)
print "...getting exit status"
returncode = chan.recv_exit_status()
while True: