Skip to content

Commit f59d843

Browse files
authored
Fix NIFI-14858 patch one more time (#1265)
1 parent d5a77aa commit f59d843

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nifi/stackable/patches/2.4.0/0004-NIFI-14858-Make-SNI-checking-configurable.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
From d91597ab5d3410cb3955b1bad5a750a3b99f7126 Mon Sep 17 00:00:00 2001
2-
From: Lars Francke <[email protected]>
3-
Date: Wed, 13 Aug 2025 14:16:55 +0200
1+
From ba6e0992aa74ab3f991b6214750d3204b859647c Mon Sep 17 00:00:00 2001
2+
From: xeniape <[email protected]>
3+
Date: Wed, 24 Sep 2025 17:12:15 +0200
44
Subject: NIFI-14858: Make SNI checking configurable
55

66
Introduces two new properties:
@@ -64,7 +64,7 @@ index 26d09706a1..132973cad5 100644
6464
}
6565

6666
diff --git a/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java b/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
67-
index cd3cd0b27e..0e07d5a141 100644
67+
index cd3cd0b27e..4bd2f4f810 100644
6868
--- a/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
6969
+++ b/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
7070
@@ -206,6 +206,8 @@ public class NiFiProperties extends ApplicationProperties {
@@ -81,7 +81,7 @@ index cd3cd0b27e..0e07d5a141 100644
8181
}
8282

8383
+ public boolean isWebHttpsSniRequired() {
84-
+ return Boolean.parseBoolean(getProperty(WEB_HTTPS_SNI_REQUIRED, "true"));
84+
+ return Boolean.parseBoolean(getProperty(WEB_HTTPS_SNI_REQUIRED, "false"));
8585
+ }
8686
+
8787
+ public boolean isWebHttpsSniHostCheck() {

0 commit comments

Comments
 (0)