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
When creating a session with verify=False parameter, subsequent requests through this session do not inherit this setting. This contradicts the expected behavior, as all session parameters should be inherited.
Steps to Reproduce
importniquests# Create session with verify=Falsesession=niquests.Session()
session.verify=False# Make request through the sessionresponse=session.get('https://example.com') # verify=False is not applied# niquests.exceptions.SSLError: HTTPSConnectionPool(host=.......
Expected Behavior
When setting verify=False for a session, all subsequent requests through this session should be executed with SSL verification disabled.
Current Behavior
Requests through the session ignore the set verify=False value and continue to perform SSL verification.
Additional Context
This can be critical for test environments or systems using self-signed certificates.
Problem Description
When creating a session with verify=False parameter, subsequent requests through this session do not inherit this setting. This contradicts the expected behavior, as all session parameters should be inherited.
Steps to Reproduce
Expected Behavior
When setting verify=False for a session, all subsequent requests through this session should be executed with SSL verification disabled.
Current Behavior
Requests through the session ignore the set verify=False value and continue to perform SSL verification.
Additional Context
This can be critical for test environments or systems using self-signed certificates.
System Information
The text was updated successfully, but these errors were encountered: