1 parent 7fdcde1 commit 0bce642Copy full SHA for 0bce642
1 file changed
testing/src/main/java/io/grpc/internal/testing/TestUtils.java
@@ -170,9 +170,9 @@ public static void installConscryptIfAvailable() {
170
provider = ConscryptLoader.newProvider();
171
} catch (Throwable t) {
172
Throwable root = Throwables.getRootCause(t);
173
- // Conscrypt uses a newer version of glibc than available on RHEL 6
+ // Conscrypt uses a newer version of glibc than available on older Linux distributions (e.g. RHEL 6/8)
174
if (root instanceof UnsatisfiedLinkError && root.getMessage() != null
175
- && root.getMessage().contains("GLIBC_2.14")) {
+ && root.getMessage().contains("GLIBC_")) {
176
conscryptInstallAttempted = true;
177
return;
178
}
0 commit comments