Skip to content

Commit

Permalink
Work around a bug in aiosocks
Browse files Browse the repository at this point in the history
Don't disable remote_resolve since it's currently broken in aiosocks.
nibrag/aiosocks#15
  • Loading branch information
Noctem committed Jun 25, 2017
1 parent e2102e1 commit ae01961
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aiopogo/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def get_connector(self, socks, limit=400):
if socks:
self.socks_connector = ProxyConnector(limit=limit,
loop=self.loop,
verify_ssl=False,
remote_resolve=False)
verify_ssl=False)
return self.socks_connector

self.connector = TCPConnector(limit=limit,
Expand Down

0 comments on commit ae01961

Please sign in to comment.