Repository: trafficserver Updated Branches: refs/heads/master 0b3fac4a3 -> 26f438d48
TS-3479 Remove verbose Warning() from HTTP/2 connections Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/26f438d4 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/26f438d4 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/26f438d4 Branch: refs/heads/master Commit: 26f438d486eaa04267db953d8d5f1249a63af2c3 Parents: 0b3fac4 Author: Leif Hedstrom <[email protected]> Authored: Wed Apr 1 16:50:30 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Wed Apr 1 16:50:30 2015 -0600 ---------------------------------------------------------------------- CHANGES | 2 ++ proxy/http2/Http2SessionAccept.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/26f438d4/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 7422d2c..4fc7b6e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 6.0.0 + *) [TS-3479] Remove verbose Warning() from HTTP/2 connections. + *) [TS-3470] traffic_server --help segfaults when SPDY is enabled. *) [TS-1611] Async request suport in lua plugin. http://git-wip-us.apache.org/repos/asf/trafficserver/blob/26f438d4/proxy/http2/Http2SessionAccept.cc ---------------------------------------------------------------------- diff --git a/proxy/http2/Http2SessionAccept.cc b/proxy/http2/Http2SessionAccept.cc index 5fe2ce7..fbb25db 100644 --- a/proxy/http2/Http2SessionAccept.cc +++ b/proxy/http2/Http2SessionAccept.cc @@ -40,7 +40,7 @@ Http2SessionAccept::accept(NetVConnection *netvc, MIOBuffer *iobuf, IOBufferRead { // XXX we need to refactor the ACL checks from HttpSessionAccept so that we can invoke them here, and also in // the SPDY protocol layer ... - Warning("skipping access control checks for HTTP/2 connection"); + // Warning("skipping access control checks for HTTP/2 connection"); netvc->attributes = this->options.transport_type;
