OLD | NEW |
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 Loading... |
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 ]) |
OLD | NEW |