Skip to content

Commit

Permalink
Merge pull request #720 from fedora-infra/feature/masher-summary-fix
Browse files Browse the repository at this point in the history
masher: Iterate over the status results generator
  • Loading branch information
lmacken committed Dec 1, 2015
2 parents 3425b45 + 64d7135 commit 76b07fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bodhi/consumers/masher.py
Expand Up @@ -204,7 +204,8 @@ def work(self, msg):
thread.start()
for thread in threads:
thread.join()
results.extend([thread.results() for thread in threads])
for result in thread.results():
results.append(result)

self.log.info('Push complete! Summary follows:')
for result in results:
Expand Down

0 comments on commit 76b07fd

Please sign in to comment.