File: 12.1.0-support-chunked-encoding-d71f53225f68edf3.yaml

package info (click to toggle)
tempest 1%3A19.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,564 kB
  • sloc: python: 69,123; sh: 196; makefile: 80
file content (9 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
---
features:
  - The RestClient (in tempest.lib.common.rest_client) now supports POSTing
    and PUTing data with chunked transfer encoding. Just pass an `iterable`
    object as the `body` argument and set the `chunked` argument to `True`.
  - A new generator called `chunkify` is added in
    tempest.lib.common.utils.data_utils that yields fixed-size chunks (slices)
    from a Python sequence.