| Index: dashboard/dashboard/pinpoint/models/quest/find_isolate.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/quest/find_isolate.py b/dashboard/dashboard/pinpoint/models/quest/find_isolate.py
|
| index 11a2a20dc3558b0a7a89a0ac186a5135ed3db2fb..3e67b7350eeefdd39ec8a367d625b7f5f52f891c 100644
|
| --- a/dashboard/dashboard/pinpoint/models/quest/find_isolate.py
|
| +++ b/dashboard/dashboard/pinpoint/models/quest/find_isolate.py
|
| @@ -45,6 +45,11 @@ class _FindIsolateExecution(execution.Execution):
|
| self._change = change
|
| self._build = None
|
|
|
| + def _AsDict(self):
|
| + return {
|
| + 'build': self._build,
|
| + }
|
| +
|
| def _Poll(self):
|
| # Look for the .isolate in our cache.
|
| try:
|
| @@ -53,7 +58,8 @@ class _FindIsolateExecution(execution.Execution):
|
| isolate_hash = None
|
|
|
| if isolate_hash:
|
| - self._Complete(result_arguments={'isolate_hash': isolate_hash})
|
| + self._Complete(
|
| + result_arguments={'isolate_hash': isolate_hash})
|
| return
|
|
|
| # Check the status of a previously requested build.
|
|
|