Skip to content

Commit a7190f1

Browse files
committedMar 13, 2025
use specific proxy env var
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent f0f41d0 commit a7190f1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## [Unreleased][]
44

5-
[Unreleased]: https://github.com/chaostoolkit-incubator/chaostoolkit-reliably/compare/0.80.1...HEAD
5+
[Unreleased]: https://github.com/chaostoolkit-incubator/chaostoolkit-reliably/compare/0.80.2...HEAD
6+
7+
## [0.80.2][]
8+
9+
[0.80.2]: https://github.com/chaostoolkit-incubator/chaostoolkit-reliably/compare/0.80.1...0.80.2
10+
11+
* Use a specific proxy environment variable to prevent mixing system proxy settings
612

713
## [0.80.1][]
814

‎chaosreliably/activities/load/actions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def run_load_test(
219219
f"{qps}",
220220
]
221221

222-
proxy = os.getenv("HTTPS_PROXY", os.getenv("HTTP_PROXY"))
222+
proxy = os.getenv("OHA_HTTPS_PROXY", os.getenv("OHA_HTTP_PROXY"))
223223
if proxy:
224224
cmd.extend(["-x", proxy])
225225

0 commit comments

Comments
 (0)