rpaframework icon indicating copy to clipboard operation
rpaframework copied to clipboard

"RPA.core.certificates - INFO - Truststore injection done, using system certificate store to validate HTTPS" with rpaframework 27.x.x

Open axiom41 opened this issue 2 years ago • 7 comments

Reopened - this issue was closed by mistake as it was created after July 2023

axiom41 avatar Sep 19 '23 15:09 axiom41

We are also Facing same issue, appreciate if you can investigate and update on the same.

savitakul avatar Sep 25 '23 12:09 savitakul

Hi!

Is there here any aupdate?

Thanks!

mpisani-aubex avatar Jan 03 '24 13:01 mpisani-aubex

Hello, this is not an issue or error, truststore functionality was added for SSL issues. https://robocorp.com/docs/troubleshooting/ssl-issues

raivolink avatar Feb 21 '24 12:02 raivolink

But can it be turned off?

pk27734 avatar May 06 '25 11:05 pk27734

logging.getLogger("RPA.core.certificates").disabled = True before import RPA module.

ymmt07039 avatar May 07 '25 23:05 ymmt07039

logging.getLogger("RPA.core.certificates").disabled = True before import RPA module.

Could you give me an example how this would look in my .resource/.robot file?

pk27734 avatar May 08 '25 08:05 pk27734

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.

ymmt07039 avatar May 09 '25 01:05 ymmt07039