Repository: trafficserver Updated Branches: refs/heads/master 879bedceb -> 9297edbbd
TS-2580: SSL Connection reset by peer errors in 4.2.0-rc0 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9297edbb Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9297edbb Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9297edbb Branch: refs/heads/master Commit: 9297edbbd947e75c05ee563db81e5711db738769 Parents: 879bedc Author: Bryan Call <[email protected]> Authored: Fri May 30 12:45:23 2014 -0700 Committer: Bryan Call <[email protected]> Committed: Fri May 30 12:45:23 2014 -0700 ---------------------------------------------------------------------- CHANGES | 2 ++ iocore/net/SSLNetVConnection.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9297edbb/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 3b25d18..948df744c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 5.0.0 + *) [TS-2580] SSL Connection reset by peer errors in 4.2.0-rc0 + *) [TS-2783] Update documentation defaults, and fix RecordsConfig.cc. *) [TS-1981] Url remap method filtering is broken with invalid method. http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9297edbb/iocore/net/SSLNetVConnection.cc ---------------------------------------------------------------------- diff --git a/iocore/net/SSLNetVConnection.cc b/iocore/net/SSLNetVConnection.cc index bef9c4b..61aaa3e 100644 --- a/iocore/net/SSLNetVConnection.cc +++ b/iocore/net/SSLNetVConnection.cc @@ -155,7 +155,7 @@ ssl_read_from_net(SSLNetVConnection * sslvc, EThread * lthread, int64_t &ret) // not EOF event = SSL_READ_ERROR; ret = errno; - SSLErrorVC(sslvc, "[SSL_NetVConnection::ssl_read_from_net] SSL_ERROR_SYSCALL, underlying IO error: %s", strerror(errno)); + Debug(ssl, "[SSL_NetVConnection::ssl_read_from_net] SSL_ERROR_SYSCALL, underlying IO error: %s", strerror(errno)); } else { // then EOF observed, treat it as EOS event = SSL_READ_EOS;
