Revert "feat: support proxy for ws connection" (#9693)

Reverts openai/codex#9409
This commit is contained in:
pakrym-oai
2026-01-22 07:57:18 -08:00
committed by GitHub
parent a4cb97ba5a
commit 4d48d4e0c2
9 changed files with 25 additions and 43 deletions

View File

@@ -169,8 +169,7 @@ pub fn build_reqwest_client() -> reqwest::Client {
let mut builder = reqwest::Client::builder()
// Set UA via dedicated helper to avoid header validation pitfalls
.user_agent(ua)
.default_headers(headers)
.use_rustls_tls();
.default_headers(headers);
if is_sandboxed() {
builder = builder.no_proxy();
}