openstacksdk/releasenotes/notes/global-request-id-d7c0736f43929165.yaml
Monty Taylor 95bf14908e Add support for global_request_id
Added support for setting global_request_id on a Connection.
If done, this will cause all requests sent to send the request id
header to the OpenStack services. Since Connection can otherwise
be used multi-threaded, add a method global_request that returns
a new Connection based on the old Connection but on which
the new global_request_id has been set. Since a Connection
can be used as a context manager, this also means the global_request
method can be used in with statements.

Change-Id: I70964cdd79741703c0b9b911b3b2f27c248130f0
2019-08-13 08:12:40 -04:00

12 lines
574 B
YAML

---
features:
- |
Added support for setting ``global_request_id`` on a ``Connection``.
If done, this will cause all requests sent to send the request id
header to the OpenStack services. Since ``Connection`` can otherwise
be used multi-threaded, add a method ``global_request`` that returns
a new ``Connection`` based on the old ``Connection`` but on which
the new ``global_request_id`` has been set. Since a ``Connection``
can be used as a context manager, this also means the ``global_request``
method can be used in ``with`` statements.