keystoneauth/releasenotes/notes/status-code-retries-75052a43efa4edb2.yaml
Dmitry Tantsur 3c2cf44e1c Add optional support for retrying certain HTTP codes
Ironic commonly returns HTTP 409 when a node is locked by another routine
and HTTP 503 when the conductor has no free threads to process the request.
Currently it is managed by custom code in ironicclient and openstacksdk,
this change will allow to move it to Session itself.

Change-Id: I04e356e7856b020cd20aa598e291ef31e02730d2
2018-05-29 14:54:56 +02:00

7 lines
216 B
YAML

---
features:
- |
Addes support for retrying certain HTTP status codes when doing requests
via the new ``status_code_retries`` and ``retriable_status_codes``
parameters for ``Session`` and ``Adapter``.