File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 55- Add support for Cloud Fetch
66- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x
77- Fix: oauth would fail if expired credentials appeared in ~ /.netrc
8+ - Fix: Python HTTP proxies were broken after switch to urllib3
89
910## 2.7.0 (2023-06-26)
1011
Original file line number Diff line number Diff line change @@ -109,7 +109,10 @@ def open(self):
109109 headers = {"Proxy-Authorization" : self .proxy_auth },
110110 )
111111 self .__pool = proxy_manager .connection_from_host (
112- self .host , self .port , pool_kwargs = _pool_kwargs
112+ host = self .realhost ,
113+ port = self .realport ,
114+ scheme = self .scheme ,
115+ pool_kwargs = _pool_kwargs ,
113116 )
114117 else :
115118 self .__pool = pool_class (self .host , self .port , ** _pool_kwargs )
You can’t perform that action at this time.
0 commit comments