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

Unified Diff: Tools/GardeningServer/alerts.py

Issue 657533002: Decreased num alerts in history per page to 5 to avoid exceed memory and response limit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/alerts.py
diff --git a/Tools/GardeningServer/alerts.py b/Tools/GardeningServer/alerts.py
index 05eb7be534765d872c393bacf521df1f8e050074..b874cb791a6e467948d447ab2424918a36b3866f 100644
--- a/Tools/GardeningServer/alerts.py
+++ b/Tools/GardeningServer/alerts.py
@@ -112,7 +112,7 @@ class AlertsHandler(webapp2.RequestHandler):
class AlertsHistory(webapp2.RequestHandler):
- MAX_LIMIT_PER_PAGE = 50
+ MAX_LIMIT_PER_PAGE = 5
def get(self):
alerts_query = AlertsJSON.query().order(-AlertsJSON.date)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698