Skip to content

Commit 7ac7727

Browse files
authored
fix(nifi): Do not require SNI checks (#1325)
NOTE: This was already done for 2.4.0 in #1265
1 parent ca5ac64 commit 7ac7727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ index 9e85c05d22..89d81813f4 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)