1 parent 228febe commit 135f8deCopy full SHA for 135f8de
1 file changed
testing/src/main/java/io/grpc/internal/testing/TestUtils.java
@@ -170,7 +170,8 @@ 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 older Linux distributions (e.g. RHEL 6/8)
+ // Conscrypt uses a newer version of glibc than available on older Linux distributions
174
+ // (e.g. RHEL 6/8)
175
if (root instanceof UnsatisfiedLinkError && root.getMessage() != null
176
&& root.getMessage().contains("GLIBC_")) {
177
conscryptInstallAttempted = true;
0 commit comments