httplib throw "TypeError: an integer is required" when run quantum

Bug 993149

Change-Id: Ife663ec1cf2b9d094a00c488f849da5857cc34a3
This commit is contained in:
hua zhang 2012-05-08 16:38:35 +08:00
parent 1405b62cde
commit 61a515a5a7
3 changed files with 4 additions and 3 deletions

View File

@ -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>

View File

@ -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

View File

@ -27,8 +27,8 @@ quantum_opts = [
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",