"RPA.core.certificates - INFO - Truststore injection done, using system certificate store to validate HTTPS" with rpaframework 27.x.x
Reopened - this issue was closed by mistake as it was created after July 2023
We are also Facing same issue, appreciate if you can investigate and update on the same.
Hi!
Is there here any aupdate?
Thanks!
Hello, this is not an issue or error, truststore functionality was added for SSL issues. https://robocorp.com/docs/troubleshooting/ssl-issues
But can it be turned off?
logging.getLogger("RPA.core.certificates").disabled = True
before import RPA module.
logging.getLogger("RPA.core.certificates").disabled = Truebefore import RPA module.
Could you give me an example how this would look in my .resource/.robot file?
Foo.py
import logging
from robot.api import SuiteVisitor
logging.getLogger("RPA.core.certificates").disabled = True
class Foo(SuiteVisitor):
pass
Bar.robot
*** Settings ***
Library Foo.py
Library RPA.Windows
...
I couldn't find a good way to apply globally.