Skip to content

Commit 5acb120

Browse files
committed
fix(CRYOSTAT_DISABLE_SSL): fixed env var behaves un expectedly
1 parent 29caecf commit 5acb120

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/io/cryostat/net/SslConfiguration.java

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ public class SslConfiguration {
6565

6666
if (env.hasEnv(Variables.DISABLE_SSL)) {
6767
String disableSslValue = env.getEnv(Variables.DISABLE_SSL);
68-
logger.info("++-" + disableSslValue);
6968
boolean disableSsl = Boolean.parseBoolean(disableSslValue); // Parse the value as a boolean
7069
if (disableSsl) {
7170
strategy = new NoSslStrategy();

0 commit comments

Comments
 (0)