You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by br...@apache.org on 2015/06/04 08:35:34 UTC

[1/2] trafficserver git commit: TS-3664: WebSockets attempts cache lookup and blocks on multiple requests

Repository: trafficserver
Updated Branches:
  refs/heads/master 2d8113098 -> e8b38aea0


TS-3664: WebSockets attempts cache lookup and blocks on multiple requests


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

Branch: refs/heads/master
Commit: 8ee26db7919d76e464a203c0d4d7f2d8f98c041d
Parents: 2d81130
Author: Brian Geffon <br...@apache.org>
Authored: Wed Jun 3 23:35:06 2015 -0700
Committer: Brian Geffon <br...@apache.org>
Committed: Wed Jun 3 23:35:06 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8ee26db7/proxy/http/HttpTransact.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc
index 961d78b..7e0e6d3 100644
--- a/proxy/http/HttpTransact.cc
+++ b/proxy/http/HttpTransact.cc
@@ -1878,7 +1878,7 @@ HttpTransact::DecideCacheLookup(State *s)
     s->cache_info.action = CACHE_DO_NO_ACTION;
     s->current.mode = GENERIC_PROXY;
   } else {
-    if (is_request_cache_lookupable(s)) {
+    if (is_request_cache_lookupable(s) && !s->is_upgrade_request) {
       s->cache_info.action = CACHE_DO_LOOKUP;
       s->current.mode = GENERIC_PROXY;
     } else {


[2/2] trafficserver git commit: TS-3664: WebSockets attempts cache lookup and blocks on multiple requests: UPDATE CHANGES

Posted by br...@apache.org.
TS-3664: WebSockets attempts cache lookup and blocks on multiple requests: UPDATE CHANGES


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

Branch: refs/heads/master
Commit: e8b38aea016fb72a15de9f00d8e3e2abcac600be
Parents: 8ee26db
Author: Brian Geffon <br...@apache.org>
Authored: Wed Jun 3 23:35:27 2015 -0700
Committer: Brian Geffon <br...@apache.org>
Committed: Wed Jun 3 23:35:27 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e8b38aea/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 9a37779..965a907 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 6.0.0
 
+  *) [TS-3664] WebSockets attempts a cache lookup and blocks on multiple requests
+
   *) [TS-3661] keep cache_sm active during 3xx redirect follow to allow
      for caching the final response.