|
|
@@ -313,7 +313,7 @@ Description: Generated by Repobot |
|
|
|
yield "package name: {}\n".format(pkgname) |
|
|
|
yield "package size: {}\n".format(fsize) |
|
|
|
yield "package message:\n-----------------\n{}\n-----------------\n".format(p.message) |
|
|
|
yield "package hashes: {}".format(fhashes) |
|
|
|
yield "package hashes: {}\n".format(fhashes) |
|
|
|
|
|
|
|
def regen_dist(self, dist_id): |
|
|
|
self.queue.put((dist_id, )) |
|
|
@@ -424,7 +424,7 @@ class AptFiles(object): |
|
|
|
|
|
|
|
def stream(): |
|
|
|
while True: |
|
|
|
data = response["Body"].read() |
|
|
|
data = response["Body"].read(65535) |
|
|
|
if not data: |
|
|
|
return |
|
|
|
yield data |
|
|
|