| Index: appengine/isolate/handlers_frontend.py
|
| diff --git a/appengine/isolate/handlers_frontend.py b/appengine/isolate/handlers_frontend.py
|
| index e95991bcf7701b36adbc5b2e1360addfe2dade31..9dbd39eae4a9cfd7832e2e482c2a4b9ebcf52bf4 100644
|
| --- a/appengine/isolate/handlers_frontend.py
|
| +++ b/appengine/isolate/handlers_frontend.py
|
| @@ -394,7 +394,9 @@ class UIHandler(auth.AuthenticatingHandler):
|
| """
|
| @auth.public
|
| def get(self):
|
| - params = {}
|
| + params = {
|
| + 'client_id': config.settings().ui_client_id,
|
| + }
|
| # Can cache for 1 week, because the only thing that would change in this
|
| # template is the oauth client id, which changes very infrequently.
|
| self.response.cache_control.no_cache = None
|
|
|