From 358840276b1aedafd0e99db4fa3f16901f3a4a73 Mon Sep 17 00:00:00 2001 From: Samuel de Medeiros Queiroz Date: Mon, 18 Apr 2016 15:30:17 -0300 Subject: [PATCH] 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 --- keystone/version/controllers.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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