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

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

Issue 3008293002: [pinpoint] Show status for every Execution. (Closed)
Patch Set: unit tests Created 3 years, 3 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/read_value.py
diff --git a/dashboard/dashboard/pinpoint/models/quest/read_value.py b/dashboard/dashboard/pinpoint/models/quest/read_value.py
index bb3a8470ae151b0a821a237f3ca48a36e19e8634..090ff45e2b1513ff4f5939b78b36c0d09cedff7d 100644
--- a/dashboard/dashboard/pinpoint/models/quest/read_value.py
+++ b/dashboard/dashboard/pinpoint/models/quest/read_value.py
@@ -46,9 +46,7 @@ class _ReadChartJsonValueExecution(execution.Execution):
self._isolate_hash = isolate_hash
def _AsDict(self):
- return {
- 'isolate_hash': self._isolate_hash
- }
+ return {}
def _Poll(self):
chartjson = _RetrieveOutputJson(self._isolate_hash, 'chartjson-output.json')
@@ -119,9 +117,7 @@ class _ReadGraphJsonValueExecution(execution.Execution):
self._isolate_hash = isolate_hash
def _AsDict(self):
- return {
- 'isolate_hash': self._isolate_hash
- }
+ return {}
def _Poll(self):
graphjson = _RetrieveOutputJson(self._isolate_hash, 'chartjson-output.json')
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/find_isolate_test.py ('k') | dashboard/dashboard/pinpoint/models/quest/run_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698