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

Side by Side Diff: appengine/swarming/handlers_endpoints.py

Issue 1860863002: Update copyright notice from Swarming to LUCI; add AUTHORS and CONTRIBUTORS. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: . Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « appengine/swarming/handlers_bot_test.py ('k') | appengine/swarming/handlers_endpoints_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Swarming Authors. All rights reserved. 1 # Copyright 2015 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed by the Apache v2.0 license that can be 2 # Use of this source code is governed by the Apache v2.0 license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """This module defines Swarming Server endpoints handlers.""" 5 """This module defines Swarming Server endpoints handlers."""
6 6
7 import datetime 7 import datetime
8 import json 8 import json
9 import logging 9 import logging
10 10
11 from google.appengine.api import datastore_errors 11 from google.appengine.api import datastore_errors
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 """ 558 """
559 logging.info('%s', request) 559 logging.info('%s', request)
560 now = utils.utcnow() 560 now = utils.utcnow()
561 q = bot_management.BotInfo.query().order(bot_management.BotInfo.key) 561 q = bot_management.BotInfo.query().order(bot_management.BotInfo.key)
562 bots, cursor = datastore_utils.fetch_page(q, request.limit, request.cursor) 562 bots, cursor = datastore_utils.fetch_page(q, request.limit, request.cursor)
563 return swarming_rpcs.BotList( 563 return swarming_rpcs.BotList(
564 cursor=cursor, 564 cursor=cursor,
565 death_timeout=config.settings().bot_death_timeout_secs, 565 death_timeout=config.settings().bot_death_timeout_secs,
566 items=[message_conversion.bot_info_to_rpc(bot, now) for bot in bots], 566 items=[message_conversion.bot_info_to_rpc(bot, now) for bot in bots],
567 now=now) 567 now=now)
OLDNEW
« no previous file with comments | « appengine/swarming/handlers_bot_test.py ('k') | appengine/swarming/handlers_endpoints_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698