File: global-request-id-d7c0736f43929165.yaml

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (11 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
---
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.