Skip to content

Commit

Permalink
fix keystone-all's usage of options vs conf
Browse files Browse the repository at this point in the history
we shouldn't be using options at all, that was a leftover piece of code
from a long time ago.

invalidates bug 949373

Change-Id: I29fcbd5f641464bda985900172b55bca45843f81
  • Loading branch information
termie committed Mar 20, 2012
1 parent 9c82397 commit 3e4653a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions bin/keystone-all
Expand Up @@ -65,10 +65,10 @@ if __name__ == '__main__':
servers = []
servers.append(create_server(CONF.config_file[0],
'admin',
options['bind_host'],
int(options['admin_port'])))
CONF.bind_host,
int(CONF.admin_port)))
servers.append(create_server(CONF.config_file[0],
'main',
options['bind_host'],
int(options['public_port'])))
CONF.bind_host,
int(CONF.public_port)))
serve(*servers)
2 changes: 1 addition & 1 deletion etc/keystone.conf
@@ -1,5 +1,5 @@
[DEFAULT]
bind_host = 0.0.0.0
#bind_host = 0.0.0.0
public_port = 5000
admin_port = 35357
admin_token = ADMIN
Expand Down

0 comments on commit 3e4653a

Please sign in to comment.