You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead, aiosocks.SocksError is raised saying there was an auth error.
AFAICS, this happens because in aiosocks.protocols.BaseSocksProtocol.negotiate, on line 58, exception aiosocks.SocksError is caught, which is a parent of aiosocks.LoginAuthenticationFailed and a brand new aiosocks.SocksError is created and raised.
No idea why that is done but the result is that aiosocks.LoginAuthenticationFailed never actually reaches the code using aiosocks.
Is this intentional?
The text was updated successfully, but these errors were encountered:
Instead,
aiosocks.SocksError
is raised saying there was an auth error.AFAICS, this happens because in
aiosocks.protocols.BaseSocksProtocol.negotiate
, on line 58, exceptionaiosocks.SocksError
is caught, which is a parent ofaiosocks.LoginAuthenticationFailed
and a brand newaiosocks.SocksError
is created and raised.No idea why that is done but the result is that
aiosocks.LoginAuthenticationFailed
never actually reaches the code usingaiosocks
.Is this intentional?
The text was updated successfully, but these errors were encountered: