Increase http client timeout from 30s to 180s

* Some deployments are reporting timeout exceptions
  with default values

Change-Id: I536a5fd138fefe48227809a4d2c78971682b7cfd
This commit is contained in:
Marco Morais 2014-05-29 01:08:05 +00:00
parent 9b73283b9d
commit 8e90dc537a
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@
#
# HTTP timeout for any of OpenStack service in seconds
#openstack_client_http_timeout=30.0
#openstack_client_http_timeout=180.0
# Use SSL for all OpenStack API interfaces
#https_insecure=False

View File

@ -30,7 +30,7 @@ from rally import exceptions
CONF = cfg.CONF
CONF.register_opts([
cfg.FloatOpt("openstack_client_http_timeout", default=30.0,
cfg.FloatOpt("openstack_client_http_timeout", default=180.0,
help="HTTP timeout for any of OpenStack service in seconds"),
cfg.BoolOpt("https_insecure", default=False,
help="Use SSL for all OpenStack API interfaces"),