Increase the number of network call retries

On hosts without nested virtualization enabled, network calls
can timeout.  This triples the number of retries Octavia attempts
for networking calls.

Change-Id: I31ff9cbbdb073d0ee92971894fac86a2245c93f8
This commit is contained in:
Michael Johnson 2015-09-21 19:08:40 +00:00
parent 57ce15f268
commit 833d633975
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@
# Network to communicate with amphora
# lb_network_name =
# The maximum attempts to retry an action with the networking service.
# max_retries = 5
# max_retries = 15
# Seconds to wait before retrying an action with the networking service.
# retry_interval = 1

View File

@ -97,7 +97,7 @@ amphora_agent_opts = [
networking_opts = [
cfg.StrOpt('lb_network_name', help=_('Name of amphora internal network')),
cfg.IntOpt('max_retries', default=5,
cfg.IntOpt('max_retries', default=15,
help=_('The maximum attempts to retry an action with the '
'networking service.')),
cfg.IntOpt('retry_interval', default=1,