diff --git a/keystone/version/controllers.py b/keystone/version/controllers.py index d7947a6fdd..50f2ae4a65 100644 --- a/keystone/version/controllers.py +++ b/keystone/version/controllers.py @@ -26,14 +26,11 @@ MEDIA_TYPE_JSON = 'application/vnd.openstack.identity-%s+json' _VERSIONS = [] # NOTE(blk-u): latest_app will be set by keystone.version.service.loadapp(). It -# gets set to the application that was just loaded. In the case of keystone-all -# loadapp() gets called twice, once for the public app and once for the admin -# app. In the case of httpd/keystone, loadapp() gets called once for the public -# app if this is the public instance or loadapp() gets called for the admin app -# if it's the admin instance. -# This is used to fetch the /v3 JSON Home response. The /v3 JSON Home response -# is the same whether it's the admin or public service so either admin or -# public works. +# gets set to the application that was just loaded. loadapp() gets called once +# for the public app if this is the public instance or loadapp() gets called +# for the admin app if it's the admin instance. This is used to fetch the /v3 +# JSON Home response. The /v3 JSON Home response is the same whether it's the +# admin or public service so either admin or public works. latest_app = None