From adbbe0147e9e726db2dc6f2c2d4e446fa589c5ba Mon Sep 17 00:00:00 2001 From: termie Date: Mon, 14 Nov 2011 09:57:24 -0800 Subject: use the keystone app in the conf --- bin/keystone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/keystone b/bin/keystone index f353e8f9..f9db5979 100755 --- a/bin/keystone +++ b/bin/keystone @@ -23,11 +23,11 @@ from keystonelight import wsgi if __name__ == '__main__': default_conf = os.path.join(possible_topdir, 'etc', - 'keystone.conf') + 'default.conf') logging.getLogger().setLevel(logging.DEBUG) conf = len(sys.argv) > 1 and sys.argv[1] or default_conf - app = deploy.loadapp('config:%s' % conf) + app = deploy.loadapp('config:%s' % conf, name='keystone') server = wsgi.Server() server.start(app, int(app.options['public_port'])) server.start(app, int(app.options['admin_port'])) -- cgit