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
resp = method_function(
self._merge_url(session, uri), <- session has verify:False but it is not passed to kwargs
timeout=self._get_timeout(kwargs.pop('timeout', None)),
cookies=kwargs.pop('cookies', self.cookies),
**kwargs)
log.logger.error(kwargs) <- this is missing Verify: False
kwargs.update({'verify': False}) <- if I add it it works
My guess this is missing
kwargs.update({'verify': session.verify})
The text was updated successfully, but these errors were encountered:
Has the Works on my Machine™ star of approval. :) Tested on Ubuntu latest
The "guess" is what was intended: potentially more attributes need to be copied and some other step got missed during a refactoring? Presumably verfiy=False worked at some point?
Version: 7.0 (Python 3.10.12 on linux)
ref this https://forum.robotframework.org/t/how-to-make-requests-library-ignore-ssl-errors/6790/8
in _common_request() function
My guess this is missing
The text was updated successfully, but these errors were encountered: