You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: trunk/google-cloud-util/google-cloud-compat-checker/src/main/java/com/google/cloud/compatchecker/GoogleCloudCompatChecker.java
if (supportedClassifiers.contains(osClassifier)) {
60
-
System.out.println(" This OS + architecture is supported by Forked Tomcat Native.");
83
+
System.out.println(" [PASS] This OS + architecture is supported.");
61
84
} else {
62
-
System.out.println(" This OS + architecture is NOT supported by Forked Tomcat Native.");
63
-
System.out.println(" See http://netty.io/wiki/forked-tomcat-native.html for details.");
85
+
System.out.println(" [FAIL] This OS + architecture is NOT supported.");
86
+
compatible = false;
87
+
}
88
+
if (bitMode.equals("64")) {
89
+
System.out.println(" [PASS] 64-bit JVM is supported.");
90
+
} else {
91
+
System.out.println(" [FAIL] " + bitMode + "-bit JVM is NOT supported.");
64
92
compatible = false;
65
93
}
94
+
if (openSslIsAvailable) {
95
+
System.out.println(" [PASS] Open SSL is available");
96
+
} else {
97
+
System.out.println(" [FAIL] Open SSL is NOT available");
98
+
if (OpenSsl.unavailabilityCause() != null) {
99
+
System.out.println(" Open SSL Unavailability cause:");
System.out.println(" [WARN] gRPC doesn't work on Google App Engine Standard under Java 1.7");
115
+
warnings = true;
116
+
}
66
117
if (!compatible) {
67
118
System.out.println("Result: FAIL");
119
+
System.out.println(" Your environment is not supported by Forked Tomcat Native.");
120
+
System.out.println(" See http://netty.io/wiki/forked-tomcat-native.html for details.");
121
+
System.out.println(" This means that you won't be able to use grpc-based APIs, but");
122
+
System.out.println(" http1-based APIs should still work.");
68
123
} else {
69
124
System.out.println("Result: UNKNOWN (checker implementation not complete)");
125
+
System.out.println(" Based on what was checked, nothing was identified that would");
126
+
System.out.println(" prevent you from using grpc-based APIs.");
127
+
if (warnings) {
128
+
System.out.println(" However, there were some warnings to watch out for.");
0 commit comments