From 60715a56746e68ac7ee7dbdd7124047a3a89487c Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 28 Sep 2016 17:14:18 -0700 Subject: [PATCH] docs: Suggest using Fork19 of tcnative Fork17 fails with: java.lang.NoClassDefFoundError: org/apache/tomcat/jni/CertificateRequestedCallback I've also seen issues of it failing silently, other than connection hanging (which I've not dug into). Since we're using Fork19 ourselves, we should have our users do the same. --- SECURITY.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 43efb78d88..dc14ef5ae8 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -62,7 +62,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven- io.netty netty-tcnative-boringssl-static - 1.1.33.Fork17 + 1.1.33.Fork19 @@ -80,7 +80,7 @@ buildscript { } dependencies { - compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork17' + compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork19' } ``` @@ -115,7 +115,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven- io.netty netty-tcnative - 1.1.33.Fork14 + 1.1.33.Fork19 ${tcnative.classifier} @@ -183,7 +183,7 @@ if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) { } dependencies { - compile 'io.netty:netty-tcnative:1.1.33.Fork14:' + tcnative_classifier + compile 'io.netty:netty-tcnative:1.1.33.Fork19:' + tcnative_classifier } ```