nova/releasenotes/notes/neutron-connection-retries-c276010afe238abc.yaml
Sean Mooney 6314f09ed4 [codespell] apply codespell to the releasenotes
this change fixes the typos in the releasenotes
"""
codespell --ignore-words=doc/dictionary.txt -i 3 -w  releasenotes/
"""

Change-Id: I29cd5268cd129b194c43a9f6b08a2b7b1c254b65
2023-10-03 01:17:21 +01:00

13 lines
692 B
YAML

---
fixes:
- |
A new config option ``[neutron]http_retries`` is added which defaults to
3. It controls how many times to retry a Neutron API call in response to a
HTTP connection failure. An example scenario where it will help is when a
deployment is using HAProxy and connections get closed after idle time. If
an incoming request tries to reuse a connection that is simultaneously
being torn down, a HTTP connection failure will occur and previously Nova
would fail the entire request. With retries, Nova can be more resilient in
this scenario and continue the request if a retry succeeds. Refer to
https://launchpad.net/bugs/1866937 for more details.