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

Unified Diff: dashboard/dashboard/pinpoint/handlers/jobs.py

Issue 3004223002: [pinpoint] Abbreviated Job dict for the Jobs listing page. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | dashboard/dashboard/pinpoint/handlers/jobs_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/pinpoint/handlers/jobs.py
diff --git a/dashboard/dashboard/pinpoint/handlers/jobs.py b/dashboard/dashboard/pinpoint/handlers/jobs.py
index 63ea09ce97ab724f9c922ccf4cefbfd1630f65d7..eb8958594267078451cc5cae98c6fb6cd52f97bd 100644
--- a/dashboard/dashboard/pinpoint/handlers/jobs.py
+++ b/dashboard/dashboard/pinpoint/handlers/jobs.py
@@ -33,6 +33,6 @@ class Jobs(webapp2.RequestHandler):
jobs = job_future.get_result()
for job in jobs:
- result['jobs_list'].append(job.AsDict())
+ result['jobs_list'].append(job.StatusDict())
return result
« no previous file with comments | « no previous file | dashboard/dashboard/pinpoint/handlers/jobs_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698