| 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')
|
|
|