Title: [107590] trunk
Revision
107590
Author
[email protected]
Date
2012-02-13 11:32:17 -0800 (Mon, 13 Feb 2012)

Log Message

Yet another perf-o-matic build fix. It turns out that a task of the same name can't be
queued for days after the first task is completed. So don't use it. Updating persistent
caches more often than necessary is better than never updating them.

* Websites/webkit-perf.appspot.com/controller.py:
(schedule_manifest_update):
(schedule_dashboard_update):
(schedule_runs_update):

Modified Paths

Diff

Modified: trunk/ChangeLog (107589 => 107590)


--- trunk/ChangeLog	2012-02-13 19:30:52 UTC (rev 107589)
+++ trunk/ChangeLog	2012-02-13 19:32:17 UTC (rev 107590)
@@ -1,3 +1,14 @@
+2012-02-13  Ryosuke Niwa  <[email protected]>
+
+        Yet another perf-o-matic build fix. It turns out that a task of the same name can't be
+        queued for days after the first task is completed. So don't use it. Updating persistent
+        caches more often than necessary is better than never updating them.
+
+        * Websites/webkit-perf.appspot.com/controller.py:
+        (schedule_manifest_update):
+        (schedule_dashboard_update):
+        (schedule_runs_update):
+
 2012-02-13  ChangSeok Oh  <[email protected]>
 
         [GTK] Revise configuration for MHTML

Modified: trunk/Websites/webkit-perf.appspot.com/controller.py (107589 => 107590)


--- trunk/Websites/webkit-perf.appspot.com/controller.py	2012-02-13 19:30:52 UTC (rev 107589)
+++ trunk/Websites/webkit-perf.appspot.com/controller.py	2012-02-13 19:32:17 UTC (rev 107590)
@@ -64,10 +64,7 @@
 
 
 def schedule_manifest_update():
-    try:
-        taskqueue.add(url='', name='manifest_update')
-    except taskqueue.TombstonedTaskError:
-        pass
+    taskqueue.add(url='')
 
 
 class CachedManifestHandler(webapp2.RequestHandler):
@@ -85,10 +82,7 @@
 
 
 def schedule_dashboard_update():
-    try:
-        taskqueue.add(url='', name='dashboard_update')
-    except taskqueue.TombstonedTaskError:
-        pass
+    taskqueue.add(url='')
 
 
 class CachedDashboardHandler(webapp2.RequestHandler):
@@ -106,11 +100,7 @@
 
 
 def schedule_runs_update(test_id, branch_id, platform_id):
-    try:
-        taskqueue.add(url='', name='runs_update_%d_%d_%d' % (test_id, branch_id, platform_id),
-            params={'id': test_id, 'branchid': branch_id, 'platformid': platform_id})
-    except taskqueue.TombstonedTaskError:
-        pass
+    taskqueue.add(url='', params={'id': test_id, 'branchid': branch_id, 'platformid': platform_id})
 
 
 class CachedRunsHandler(webapp2.RequestHandler):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to