From 808536e24e7488372e53f1d5fafd42a1eeced464 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Tue, 29 Oct 2013 10:24:09 +0000 Subject: Register API options under the 'api' group Register the API options under the 'api' group and change the name of the options to be less redundant. This patch also regenerates the sample config file. Change-Id: I55ec0b977275a394fef059a6318540bb5186ddc0 Closes-Bug: #1244742 --- ironic/cmd/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ironic/cmd/api.py') diff --git a/ironic/cmd/api.py b/ironic/cmd/api.py index 49b159841..c9be768a7 100644 --- a/ironic/cmd/api.py +++ b/ironic/cmd/api.py @@ -38,8 +38,8 @@ def main(): ironic_service.prepare_service(sys.argv) # Build and start the WSGI app - host = CONF.ironic_api_bind_ip - port = CONF.ironic_api_port + host = CONF.api.host_ip + port = CONF.api.port wsgi = simple_server.make_server( host, port, app.VersionSelectorApplication()) -- cgit v1.2.1