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

Unified Diff: dashboard/dashboard/pinpoint/models/quest/execution.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/execution.py
diff --git a/dashboard/dashboard/pinpoint/models/quest/execution.py b/dashboard/dashboard/pinpoint/models/quest/execution.py
index c885fcc296819857d3ac10bf7b0bb25418977351..d77bce552b6309c615b5ac741d03beeb43241e56 100644
--- a/dashboard/dashboard/pinpoint/models/quest/execution.py
+++ b/dashboard/dashboard/pinpoint/models/quest/execution.py
@@ -74,10 +74,10 @@ class Execution(object):
d = {
'completed': self._completed,
'exception': self._exception,
+ 'details': self._AsDict(),
'result_arguments': self._result_arguments,
'result_values': self._result_values,
}
- d.update(self._AsDict())
return d
def _AsDict(self):

Powered by Google App Engine
This is Rietveld 408576698