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

Unified Diff: appengine/swarming/handlers_endpoints.py

Issue 2676513004: Add task-list summary (Closed)
Patch Set: Increase summary scope Created 3 years, 10 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: appengine/swarming/handlers_endpoints.py
diff --git a/appengine/swarming/handlers_endpoints.py b/appengine/swarming/handlers_endpoints.py
index 7f084e2ebb58765e9ee220bcc22c3e64c6e974f0..be8aad67d7e52cca726d4f6a6905682f69e6cfa6 100644
--- a/appengine/swarming/handlers_endpoints.py
+++ b/appengine/swarming/handlers_endpoints.py
@@ -489,8 +489,6 @@ class SwarmingTasksService(remote.Service):
logging.info('%s', request)
if not request.start:
raise endpoints.BadRequestException('start (as epoch) is required')
- if not request.end:
- raise endpoints.BadRequestException('end (as epoch) is required')
now = utils.utcnow()
try:
count = self._query_from_request(request, 'created_ts').count()

Powered by Google App Engine
This is Rietveld 408576698