Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3041)

Unified Diff: dashboard/dashboard/pinpoint/models/quest/find_isolate.py

Issue 3001163002: Pinpoint - Surface info from executions for display in UI. (Closed)
Patch Set: Rebase again. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/execution.py ('k') | dashboard/dashboard/pinpoint/models/quest/find_isolate_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698