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 by the Apache v2.0 license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import logging | 5 import logging |
6 import re | 6 import re |
7 | 7 |
8 from google.appengine.api import app_identity | 8 from google.appengine.api import app_identity |
9 from google.appengine.api import lib_config | 9 from google.appengine.api import lib_config |
10 from google.appengine.ext import ndb | 10 from google.appengine.ext import ndb |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 return msg | 102 return msg |
103 | 103 |
104 | 104 |
105 ################################################################################ | 105 ################################################################################ |
106 # Rest | 106 # Rest |
107 | 107 |
108 | 108 |
109 @utils.cache | 109 @utils.cache |
110 def self_config_set(): | 110 def self_config_set(): |
111 return 'services/%s' % app_identity.get_application_id() | 111 return 'services/%s' % app_identity.get_application_id() |
| 112 |
| 113 |
| 114 def config_service_hostname(): |
| 115 """Returns hostname of the config service, or None.""" |
| 116 settings = ConfigSettings.cached() |
| 117 return settings and settings.service_hostname or None |
OLD | NEW |