1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +02:00

- fixed #497987 - live buildlog was broken

This commit is contained in:
Marcus Hüwe 2009-04-24 18:17:12 +00:00
parent 4a924553b2
commit 8cc699fe01

View File

@ -2872,9 +2872,15 @@ def streamfile(url, http_meth = http_GET, bufsize=8192):
def print_buildlog(apiurl, prj, package, platform, arch, offset = 0):
"""prints out the buildlog on stdout"""
query = {'nostream' : '1', 'start' : '%s' % offset}
u = makeurl(apiurl, ['build', prj, platform, arch, package, '_log'], query=query)
for data in streamfile(u):
print data
while True:
query['start'] = offset
start_offset = offset
u = makeurl(apiurl, ['build', prj, platform, arch, package, '_log'], query=query)
for data in streamfile(u):
offset += len(data)
print data
if start_offset == offset:
break
def get_buildinfo(apiurl, prj, package, platform, arch, specfile=None, addlist=None):
query = []