diff options
author | Ewan Mellor <ewan.mellor@citrix.com> | 2011-10-31 17:21:54 -0700 |
---|---|---|
committer | Ewan Mellor <ewan.mellor@citrix.com> | 2011-10-31 17:26:13 -0700 |
commit | 44d9647e7ff59c907bfe7e3eb3873159556809db (patch) | |
tree | 8550cb8e3633bb6cb1391b862dac3d98689c288a /nova/flags.py | |
parent | e7ac69a6ed89567515742844d8f667becd5d69e7 (diff) | |
download | nova-44d9647e7ff59c907bfe7e3eb3873159556809db.tar.gz nova-44d9647e7ff59c907bfe7e3eb3873159556809db.tar.xz nova-44d9647e7ff59c907bfe7e3eb3873159556809db.zip |
Bug 884527: ajax_console_proxy_port needs to be an integer
Fix declaration of ajax_console_proxy_port flag.
Change-Id: If949878a81339def2be5dba67ad1415180db4715
Diffstat (limited to 'nova/flags.py')
-rw-r--r-- | nova/flags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/flags.py b/nova/flags.py index da2cc9321..20225eba5 100644 --- a/nova/flags.py +++ b/nova/flags.py @@ -315,7 +315,7 @@ DEFINE_string('ajax_console_proxy_url', 'http://127.0.0.1:8000', 'location of ajax console proxy, \ in the form "http://127.0.0.1:8000"') -DEFINE_string('ajax_console_proxy_port', +DEFINE_integer('ajax_console_proxy_port', 8000, 'port that ajax_console_proxy binds') DEFINE_string('vsa_topic', 'vsa', 'the topic that nova-vsa service listens on') DEFINE_bool('verbose', False, 'show debug output') |