| Index: dashboard/dashboard/pinpoint/models/job.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/job.py b/dashboard/dashboard/pinpoint/models/job.py
|
| index 89aae0d5f4c1b1be12f44cc6e445832770a860fa..cb931430482f6f34f2d2bd854823f9441f0ffe1f 100644
|
| --- a/dashboard/dashboard/pinpoint/models/job.py
|
| +++ b/dashboard/dashboard/pinpoint/models/job.py
|
| @@ -270,11 +270,16 @@ class _JobState(object):
|
|
|
| result_values.append(change_result_values)
|
|
|
| + attempts = []
|
| + for c in self._changes:
|
| + attempts.append([a.AsDict() for a in self._attempts[c]])
|
| +
|
| return {
|
| 'quests': map(str, self._quests),
|
| 'changes': map(str, self._changes),
|
| 'comparisons': comparisons,
|
| 'result_values': result_values,
|
| + 'attempts': attempts,
|
| }
|
|
|
| def _Compare(self, change_a, change_b):
|
|
|