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

Unified Diff: appengine/machine_provider/handlers_endpoints.py

Issue 2225263004: Adds config component to Machine Provider (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: . Created 4 years, 4 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 | « appengine/machine_provider/cron.yaml ('k') | appengine/machine_provider/main.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/machine_provider/handlers_endpoints.py
diff --git a/appengine/machine_provider/handlers_endpoints.py b/appengine/machine_provider/handlers_endpoints.py
index ef3973a27ddcdbec6b76e8c28bba8a1959467532..a38033ea13aef7b58fac7a40fdd07ad4dc3ba7d9 100644
--- a/appengine/machine_provider/handlers_endpoints.py
+++ b/appengine/machine_provider/handlers_endpoints.py
@@ -26,6 +26,7 @@ from components import utils
from components.machine_provider import rpc_messages
import acl
+import config
import metrics
import models
@@ -529,4 +530,8 @@ class MachineProviderEndpoints(remote.Service):
def create_endpoints_app():
- return endpoints.api_server([CatalogEndpoints, MachineProviderEndpoints])
+ return endpoints.api_server([
+ CatalogEndpoints,
+ MachineProviderEndpoints,
+ config.ConfigApi,
+ ])
« no previous file with comments | « appengine/machine_provider/cron.yaml ('k') | appengine/machine_provider/main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698