From 0f05751f3911b515e002b083362b9316c5f19ae0 Mon Sep 17 00:00:00 2001 From: Adrian Nembach Date: Wed, 18 Mar 2026 14:02:28 +0100 Subject: [PATCH 1/2] AP-24844: Make AP cacerts the default --- .../java/org/knime/python3/PythonCaCertsMode.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/org.knime.python3/src/main/java/org/knime/python3/PythonCaCertsMode.java b/org.knime.python3/src/main/java/org/knime/python3/PythonCaCertsMode.java index 7571855d1..290c5c694 100644 --- a/org.knime.python3/src/main/java/org/knime/python3/PythonCaCertsMode.java +++ b/org.knime.python3/src/main/java/org/knime/python3/PythonCaCertsMode.java @@ -73,20 +73,20 @@ * Controls how the the CAs that Python trusts when using SSL are determined. The mode can be set via the system * property {@code knime.python.cacerts} which can be set to either {@link PythonCaCertsMode#ENV} to trust the CAs of * the Python environment or {@link PythonCaCertsMode#AP} to trust the CAs that the AP trusts. The property match is - * done case-insensitive and defaults to ENV, also if the property isn't set at all. + * done case-insensitive and defaults to AP, also if the property isn't set at all. * * @author Adrian Nembach, KNIME GmbH, Konstanz, Germany */ @SuppressWarnings("javadoc") enum PythonCaCertsMode { /** - * Trust the CAs of the Python environment. This is the default behavior. + * Trust the CAs of the Python environment. */ ENV(e -> { // leave as is }), /** - * Trust the CAs that the AP trusts. Creates a .crt file with the CAs that Java trusts and points the + * Trust the CAs that the AP trusts. This is the default behavior. Creates a .crt file with the CAs that Java trusts and points the * following environment variables to it: *