From d95576804e65c00a8fb0bac2993967483119dfd2 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Fri, 19 Feb 2016 09:15:12 -0800 Subject: [PATCH] Revert "Update to latest tcnative release" This reverts commit 17515364105a28b5698062534322749a04c22fd1. It causes an java.lang.AbstractMethodError --- SECURITY.md | 10 +++++----- build.gradle | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 46de8f4f8b..ee702f9fde 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -30,7 +30,7 @@ Support for OpenSSL is only provided for the Netty transport via [netty-tcnative ### OpenSSL: Dynamic vs Static (which to use?) -As of version `1.1.33.Fork14`, netty-tcnative provides two options for usage: statically or dynamically linked. For simplification of initial setup, +As of version `1.1.33.Fork13`, netty-tcnative provides two options for usage: statically or dynamically linked. For simplification of initial setup, we recommend that users first look at `netty-tcnative-boringssl-static`, which is statically linked against BoringSSL and Apache APR. Using this artifact requires no extra installation and guarantees that ALPN and the ciphers required for HTTP/2 are available. @@ -60,7 +60,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.Fork14 + 1.1.33.Fork13 ${os.detected.classifier} @@ -96,7 +96,7 @@ buildscript { apply plugin: "com.google.osdetector" dependencies { - compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork14:' + osdetector.classifier + compile 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork13:' + osdetector.classifier } ``` @@ -131,7 +131,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.Fork13 ${tcnative.classifier} @@ -199,7 +199,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.Fork13:' + tcnative_classifier } ``` diff --git a/build.gradle b/build.gradle index da2a793f6c..8f36af8473 100644 --- a/build.gradle +++ b/build.gradle @@ -138,7 +138,7 @@ subprojects { netty: 'io.netty:netty-codec-http2:4.1.0.CR1', netty_epoll: 'io.netty:netty-transport-native-epoll:4.1.0.CR1' + epoll_suffix, - netty_tcnative: 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork14:' + osdetector.classifier, + netty_tcnative: 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork13:' + osdetector.classifier, // Test dependencies. junit: 'junit:junit:4.11',