We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
websocket-client document says: it needs http_proxy_auth attribute when proxy requiring authentication as described below. https://websocket-client.readthedocs.io/en/latest/examples.html#connecting-through-a-proxy
but that attribute is not involved in below code:
ripe-atlas-cousteau/ripe/atlas/cousteau/stream.py
Lines 126 to 130 in 6d51e0c
File "/usr/local/lib/python3.11/site-packages/ripe/atlas/cousteau/stream.py", line 135, in connect self.ws = websocket.create_connection( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/websocket/_core.py", line 601, in create_connection websock.connect(url, **options) File "/usr/local/lib/python3.11/site-packages/websocket/_core.py", line 244, in connect self.sock, addrs = connect(url, self.sock_opt, proxy_info(**options), ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/websocket/_http.py", line 132, in connect sock = _tunnel(sock, hostname, port, auth) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/websocket/_http.py", line 299, in _tunnel raise WebSocketProxyException( websocket._exceptions.WebSocketProxyException: failed CONNECT via proxy status: 407
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
websocket-client document says:
it needs http_proxy_auth attribute when proxy requiring authentication as described below.
https://websocket-client.readthedocs.io/en/latest/examples.html#connecting-through-a-proxy
but that attribute is not involved in below code:
ripe-atlas-cousteau/ripe/atlas/cousteau/stream.py
Lines 126 to 130 in 6d51e0c
then it raises 407 error as following:
The text was updated successfully, but these errors were encountered: