File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## 0.14.7
8+
9+ - Fix AttributeError that happened when Socks5Connection were terminated
10+
711## 0.14.6 (February 1st, 2022)
812
913- Fix SOCKS support for ` http:// ` URLs. (#492 )
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ def __init__(
206206 )
207207 self ._connect_lock = AsyncLock ()
208208 self ._connection : typing .Optional [AsyncConnectionInterface ] = None
209- self ._connection_failed = False
209+ self ._connect_failed = False
210210
211211 async def handle_async_request (self , request : Request ) -> Response :
212212 timeouts = request .extensions .get ("timeout" , {})
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ def __init__(
206206 )
207207 self ._connect_lock = Lock ()
208208 self ._connection : typing .Optional [ConnectionInterface ] = None
209- self ._connection_failed = False
209+ self ._connect_failed = False
210210
211211 def handle_request (self , request : Request ) -> Response :
212212 timeouts = request .extensions .get ("timeout" , {})
You can’t perform that action at this time.
0 commit comments