You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by su...@apache.org on 2015/05/09 03:38:32 UTC

[1/2] trafficserver git commit: [TS-3590]: Mark H2 fetch streams as non-internal requests

Repository: trafficserver
Updated Branches:
  refs/heads/master be0b7311d -> 372e03077


[TS-3590]: Mark H2 fetch streams as non-internal requests


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/74917a37
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/74917a37
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/74917a37

Branch: refs/heads/master
Commit: 74917a371bb29a2aff72b6af1eeed441d370fd48
Parents: be0b731
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Sat May 9 01:37:33 2015 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Sat May 9 01:37:33 2015 +0000

----------------------------------------------------------------------
 proxy/http2/Http2ConnectionState.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/74917a37/proxy/http2/Http2ConnectionState.cc
----------------------------------------------------------------------
diff --git a/proxy/http2/Http2ConnectionState.cc b/proxy/http2/Http2ConnectionState.cc
index a63f4fd..8d7ec7d 100644
--- a/proxy/http2/Http2ConnectionState.cc
+++ b/proxy/http2/Http2ConnectionState.cc
@@ -1005,7 +1005,7 @@ Http2Stream::init_fetcher(Http2ConnectionState &cstate)
   // Initialize FetchSM
   _fetch_sm = FetchSMAllocator.alloc();
   _fetch_sm->ext_init((Continuation *)cstate.ua_session, method, url, HTTP2_FETCHING_HTTP_VERSION,
-                      cstate.ua_session->get_client_addr(), TS_FETCH_FLAGS_DECHUNK);
+                      cstate.ua_session->get_client_addr(), (TS_FETCH_FLAGS_DECHUNK | TS_FETCH_FLAGS_NOT_INTERNAL_REQUEST));
 
   // Set request header
   MIMEFieldIter fiter;


[2/2] trafficserver git commit: update CHANGES

Posted by su...@apache.org.
update CHANGES


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/372e0307
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/372e0307
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/372e0307

Branch: refs/heads/master
Commit: 372e03077e23aced3f87a94a6b13aecaf5569205
Parents: 74917a3
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Sat May 9 01:38:20 2015 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Sat May 9 01:38:20 2015 +0000

----------------------------------------------------------------------
 CHANGES | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/372e0307/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 206cd04..958c0f7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 6.0.0
 
+  *) [TS-3590]: Mark H2 fetch streams as non-internal requests
+
   *) [TS-3370] header_rewrite plugin uses dead continuation.
 
   *) [TS-3588]: Fix continuation leak in background_fetch in remap mode