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
When custom requests.Session is passed to LivySession.create(), it does not honour 'Verify'. Code sample:
r_session = requests.Session() r_session.verify=False livy_session = LivySession.create( LIVY_URL, requests_session=r_session, kind=SessionKind.SQL)
This ignores verify=False set in requests session and will go ahead with default(Verify=true) behaviour.
We can either update it from arg requests_Session from here :
pylivy/livy/client.py
Line 56 in 6c7bf18
or pass appropriate value here :
Line 90 in 6c7bf18
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When custom requests.Session is passed to LivySession.create(), it does not honour 'Verify'.
Code sample:
This ignores verify=False set in requests session and will go ahead with default(Verify=true) behaviour.
We can either update it from arg requests_Session from here :
pylivy/livy/client.py
Line 56 in 6c7bf18
or pass appropriate value here :
pylivy/livy/client.py
Line 90 in 6c7bf18
The text was updated successfully, but these errors were encountered: