Remove comments mentioning eventlet

There was a comment in keystone/version/controllers.py mentioning
keystone-all command. It is invalid now that eventlet support has
been removed.

This change fixes such comment.

Change-Id: Ie92e26d3788e226b6117757e5c66dcc66969c697
This commit is contained in:
Samuel de Medeiros Queiroz 2016-04-18 15:30:17 -03:00
parent 20b851b240
commit 358840276b
1 changed files with 5 additions and 8 deletions

View File

@ -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