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

Side by Side Diff: appengine/gce-backend/handlers_queues.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Fixed third parties Created 4 years, 6 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
OLDNEW
1 # Copyright 2015 The LUCI 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 under the Apache License, Version 2.0
3 # found in the LICENSE file. 3 # that can be found in the LICENSE file.
4 4
5 """Task queues for the GCE Backend.""" 5 """Task queues for the GCE Backend."""
6 6
7 import json 7 import json
8 import logging 8 import logging
9 9
10 from google.appengine.ext import ndb 10 from google.appengine.ext import ndb
11 import webapp2 11 import webapp2
12 12
13 from components import decorators 13 from components import decorators
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 ('/internal/queues/delete-instance-template', 279 ('/internal/queues/delete-instance-template',
280 InstanceTemplateDeletionHandler), 280 InstanceTemplateDeletionHandler),
281 ('/internal/queues/fetch-instances', InstanceFetchHandler), 281 ('/internal/queues/fetch-instances', InstanceFetchHandler),
282 ('/internal/queues/process-pubsub-messages', PubSubMessageProcessHandler), 282 ('/internal/queues/process-pubsub-messages', PubSubMessageProcessHandler),
283 ('/internal/queues/remove-cataloged-instance', 283 ('/internal/queues/remove-cataloged-instance',
284 CatalogedInstanceRemovalHandler), 284 CatalogedInstanceRemovalHandler),
285 ('/internal/queues/resize-instance-group', InstanceGroupResizeHandler), 285 ('/internal/queues/resize-instance-group', InstanceGroupResizeHandler),
286 ('/internal/queues/update-instance-metadata', 286 ('/internal/queues/update-instance-metadata',
287 InstanceMetadataUpdateHandler), 287 InstanceMetadataUpdateHandler),
288 ]) 288 ])
OLDNEW
« no previous file with comments | « appengine/gce-backend/handlers_cron.py ('k') | appengine/gce-backend/instance_group_managers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698