Add more queue information to status JSON

Adds item ahead, items behind, and failing reasons for each item
to the JSON status output.

Change-Id: Iefa531e773b4cd4a62fd42f7e05600cca4421ca3
This commit is contained in:
James E. Blair 2013-09-13 11:48:19 -07:00
parent 972e3c78e8
commit 2feda2d5bf
1 changed files with 6 additions and 0 deletions

View File

@ -298,6 +298,12 @@ class Pipeline(object):
else: else:
ret['url'] = None ret['url'] = None
ret['id'] = changeish._id() ret['id'] = changeish._id()
if item.item_ahead:
ret['item_ahead'] = item.item_ahead.change._id()
else:
ret['item_ahead'] = None
ret['items_behind'] = [i.change._id() for i in item.items_behind]
ret['failing_reasons'] = item.current_build_set.failing_reasons
ret['project'] = changeish.project.name ret['project'] = changeish.project.name
ret['enqueue_time'] = int(item.enqueue_time * 1000) ret['enqueue_time'] = int(item.enqueue_time * 1000)
ret['jobs'] = [] ret['jobs'] = []