diff options
author | Melanie | 2012-07-15 12:28:58 +0200 |
---|---|---|
committer | Melanie | 2012-07-15 12:28:58 +0200 |
commit | ad75a4b50b77dee08614dba9e57261d8b08c6860 (patch) | |
tree | 011e01286a3750f9ad1e36fa3d173e98a6f57b50 /OpenSim | |
parent | Make https work in the poll service manager (diff) | |
download | opensim-SC_OLD-ad75a4b50b77dee08614dba9e57261d8b08c6860.zip opensim-SC_OLD-ad75a4b50b77dee08614dba9e57261d8b08c6860.tar.gz opensim-SC_OLD-ad75a4b50b77dee08614dba9e57261d8b08c6860.tar.bz2 opensim-SC_OLD-ad75a4b50b77dee08614dba9e57261d8b08c6860.tar.xz |
Eliminate a spurious exception report when a https url is accessed with a wrong
CN
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index ad5af1f..a3a5029 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -1809,6 +1809,8 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1809 | 1809 | ||
1810 | public void httpServerException(object source, Exception exception) | 1810 | public void httpServerException(object source, Exception exception) |
1811 | { | 1811 | { |
1812 | if (source.ToString() == "HttpServer.HttpListener" && exception.ToString().StartsWith("Mono.Security.Protocol.Tls.TlsException")) | ||
1813 | return; | ||
1812 | m_log.ErrorFormat("[BASE HTTP SERVER]: {0} had an exception {1}", source.ToString(), exception.ToString()); | 1814 | m_log.ErrorFormat("[BASE HTTP SERVER]: {0} had an exception {1}", source.ToString(), exception.ToString()); |
1813 | /* | 1815 | /* |
1814 | if (HTTPDRunning)// && NotSocketErrors > 5) | 1816 | if (HTTPDRunning)// && NotSocketErrors > 5) |