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: agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/common/NetworkFriendlyExceptions.java
+22-6
Original file line number
Diff line number
Diff line change
@@ -228,24 +228,40 @@ public boolean detect(Throwable error) {
228
228
@Override
229
229
publicStringmessage(Stringurl) {
230
230
returnFriendlyException.populateFriendlyMessage(
231
-
"Probable root cause may be : missing cipher suites which are expected by the requested target.",
231
+
"JVM appears to be missing cipher suites which are supported by the endpoint.",
232
232
getCipherFriendlyExceptionAction(url),
233
233
getFriendlyExceptionBanner(url),
234
234
"This message is only logged the first time it occurs after startup.");
"The Application Insights Java agent detects that you do not have any of the following cipher suites that are supported by the endpoint it connects to: "
241
+
"The JVM does not have any of the cipher suites that are supported by the endpoint "
Copy file name to clipboardExpand all lines: agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/init/MainEntryPoint.java
0 commit comments