Increase ping timeout from 60 to 120 seconds

The Cirros image only sends out three DHCPDISCOVERs with 60 second
waits between. The ovs_neutron_agent may not have the port wired in
time for the first one, and with ping_timeout=60 the test will be
terminated before the second one is sent. This patch increases the
timeout to 120 seconds to prevent that.

Change-Id: I03fcec50b91fd89ad64e16fce82f9211c2e086a1
Partial-Bug: 1253896
This commit is contained in:
Darragh O'Reilly 2014-01-24 12:17:40 +00:00
parent 640629f6ab
commit 6b636677c2
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@
# Timeout in seconds to wait for ping to succeed. (integer
# value)
#ping_timeout=60
#ping_timeout=120
# Timeout in seconds to wait for authentication to succeed.
# (integer value)

View File

@ -147,7 +147,7 @@ ComputeGroup = [
default='root',
help="User name used to authenticate to an instance."),
cfg.IntOpt('ping_timeout',
default=60,
default=120,
help="Timeout in seconds to wait for ping to "
"succeed."),
cfg.IntOpt('ssh_timeout',