Fix wsgi config file access for HTTPD

Bug 1051081

Change-Id: Ie1690c9b1b98ed3f5a78d935878369b7520b35c9
This commit is contained in:
Adam Young 2012-09-14 17:13:59 -04:00 committed by Adam Young
parent f261f718ee
commit 19c0e8d856

View File

@ -7,8 +7,8 @@ from keystone.common import logging
LOG = logging.getLogger(__name__)
CONF = config.CONF
config_files = ['/etc/keystone.conf']
CONF(config_files=config_files)
config_files = ['/etc/keystone/keystone.conf']
CONF(project='keystone', default_config_files=config_files)
conf = CONF.config_file[0]
name = os.path.basename(__file__)