6aa733e0f3
in order to enhance the cmd to support kubernetes url based routing over port based routing. Once this is merged I will submit another patch set to subunit_describe_calls to support -u --urls (Optional) The path to a JSON file describing the urls being used by different services. Note Can not be used with -p. Added test cases for cliff subprocess and found a bug with the -v. The standard -v --verbose of cliff conflict with this command so I changed the -v --verbose to -a --all for print header with printing to stdout I am also getting ready to add test cases for cliff subprocess support for different options. Bug #1890060 Correct os join in test cases to avoid a conflict with https://review.opendev.org/#/c/683026 Closes-bug: #1890060 Change-Id: I9459db0dbeda721187ea5f4802c7453c2092dac3
10 lines
586 B
YAML
10 lines
586 B
YAML
---
|
|
fixes:
|
|
- |
|
|
Fixed bug #1890060. tempest subunit_describe_calls --verbose not working with Cliff CLI.
|
|
The subunit_describe_calls --verbose argument was a boolean and worked in the non Cliff CLI
|
|
which is now deprecated, but does not work with cliff since --verbase is a standard cliff
|
|
argument which is an int. Since the tool is in lib directory we cannot change the interface,
|
|
so we add a new argument -a --all-stdout that will allow cliff CLI to support the
|
|
feature in subunnit_describe_calls to print request and response headers and bodies
|
|
to stdout. |