Skip to content

Commit

Permalink
httplib throw "TypeError: an integer is required" when run quantum
Browse files Browse the repository at this point in the history
Bug 993149

Change-Id: Ife663ec1cf2b9d094a00c488f849da5857cc34a3
  • Loading branch information
hua zhang committed May 8, 2012
1 parent 1405b62 commit 61a515a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Authors
Expand Up @@ -74,6 +74,7 @@ Greg Althaus <galthaus@austin.rr.com>
Hengqing Hu <hudayou@hotmail.com>
Hisaharu Ishii <ishii.hisaharu@lab.ntt.co.jp>
Hisaki Ohara <hisaki.ohara@intel.com>
Hua Zhang <zhhuabj@cn.ibm.com>
Ilya Alekseyev <ilyaalekseyev@acm.org>
Ionuț Arțăriși <iartarisi@suse.cz>
Isaku Yamahata <yamahata@valinux.co.jp>
Expand Down
2 changes: 1 addition & 1 deletion etc/nova/nova.conf.sample
Expand Up @@ -614,7 +614,7 @@
###### (StrOpt) HOST for connecting to quantum
# quantum_connection_host="127.0.0.1"
###### (StrOpt) PORT for connecting to quantum
# quantum_connection_port="9696"
# quantum_connection_port=9696
###### (StrOpt) Default tenant id when creating quantum networks
# quantum_default_tenant_id="default"
###### (StrOpt) Indicates underlying IP address management library
Expand Down
4 changes: 2 additions & 2 deletions nova/network/quantum/quantum_connection.py
Expand Up @@ -27,8 +27,8 @@
cfg.StrOpt('quantum_connection_host',
default='127.0.0.1',
help='HOST for connecting to quantum'),
cfg.StrOpt('quantum_connection_port',
default='9696',
cfg.IntOpt('quantum_connection_port',
default=9696,
help='PORT for connecting to quantum'),
cfg.StrOpt('quantum_default_tenant_id',
default="default",
Expand Down

0 comments on commit 61a515a

Please sign in to comment.