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
Is there a way to send some flag to ignore ssl certificate check?
I have one environment which is failing to connect with below message:
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1131)
The text was updated successfully, but these errors were encountered:
I added this in my local copy and it works:
# ignore certificate fix import ssl self._connection = websocket.create_connection( self.ws_url, subprotocols=[GQL_WS_SUBPROTOCOL], # ignore certificate fix sslopt={"cert_reqs": ssl.CERT_NONE}, )
Sorry, something went wrong.
No branches or pull requests
Is there a way to send some flag to ignore ssl certificate check?
I have one environment which is failing to connect with below message:
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1131)
The text was updated successfully, but these errors were encountered: