74514400a2
As part of the migration from httblib2 -> urllib3 we lost support for handling the env vars for setting an http proxy. This wasn't ever an explicit feature in tempest, but instead was an artifact of our library choice for doing http. However as people relied on this functionality and it is a useful feature having tempest support this explicitly will make sure we don't accidentally drop support for it in the future. This commit adds a new config options to specify and proxy_url to replace the lost functionality. Change-Id: Id8f6422a323f8bfdb10527f55c0cb046622b88bf Closes-Bug: #1556864
10 lines
470 B
YAML
10 lines
470 B
YAML
---
|
|
features:
|
|
- Adds a new config options, ``proxy_url``. This options is used to configure
|
|
running tempest through a proxy server.
|
|
- The RestClient class in tempest.lib.rest_client has a new kwarg parameters,
|
|
``proxy_url``, that is used to set a proxy server.
|
|
- A new class was added to tempest.lib.http, ClosingProxyHttp. This behaves
|
|
identically to ClosingHttp except that it requires a proxy url and will
|
|
establish a connection through a proxy
|