You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2013/09/10 00:53:06 UTC

[1/2] git commit: Use proper sentences in CHANGES

Updated Branches:
  refs/heads/master b1845c4be -> a061d7ca8


Use proper sentences in CHANGES


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

Branch: refs/heads/master
Commit: ddf36d25179ac30387316cbe152f9c8f000cde51
Parents: b1845c4
Author: James Peach <jp...@apache.org>
Authored: Mon Sep 9 15:52:24 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Mon Sep 9 15:52:24 2013 -0700

----------------------------------------------------------------------
 CHANGES | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ddf36d25/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 9027adb..fd4076f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,7 +2,7 @@
 Changes with Apache Traffic Server 4.1.0
 
 
-  *) [TS-2176] do not reset value of api_skip_cache_lookup when reading it
+  *) [TS-2176] Do not reset value of api_skip_cache_lookup when reading it.
     Author: Corey Cossentino <co...@omniti.com>
 
   *) [TS-2191] Do not reschedule http_sm when the sm_list`s lock is not


[2/2] git commit: TS-2195: Deprecate experimental TSHttpTxnCacheLookupSkip API

Posted by jp...@apache.org.
TS-2195: Deprecate experimental TSHttpTxnCacheLookupSkip API

TSHttpTxnCacheLookupSkip() is in experimental, but can be implemented
by stable API; TSHttpTxnConfigIntSet(txn, TS_CONFIG_HTTP_CACHE_HTTP, 0).


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

Branch: refs/heads/master
Commit: a061d7ca88eb090e3dffe874167c02e4c001301e
Parents: ddf36d2
Author: James Peach <jp...@apache.org>
Authored: Mon Sep 9 15:49:36 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Mon Sep 9 15:52:32 2013 -0700

----------------------------------------------------------------------
 CHANGES                     | 2 ++
 proxy/api/ts/experimental.h | 5 ++++-
 2 files changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/a061d7ca/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index fd4076f..faa6402 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,8 @@
 Changes with Apache Traffic Server 4.1.0
 
 
+  *) [TS-2195] Deprecate experimental TSHttpTxnCacheLookupSkip API.
+
   *) [TS-2176] Do not reset value of api_skip_cache_lookup when reading it.
     Author: Corey Cossentino <co...@omniti.com>
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/a061d7ca/proxy/api/ts/experimental.h
----------------------------------------------------------------------
diff --git a/proxy/api/ts/experimental.h b/proxy/api/ts/experimental.h
index 9a92507..f13edab 100644
--- a/proxy/api/ts/experimental.h
+++ b/proxy/api/ts/experimental.h
@@ -183,11 +183,14 @@ extern "C"
    ****************************************************************************/
   tsapi TSReturnCode TSHttpTxnCacheLookupCountGet(TSHttpTxn txnp, int *lookup_count);
   tsapi TSReturnCode TSHttpTxnRedirectRequest(TSHttpTxn txnp, TSMBuffer bufp, TSMLoc url_loc);
-  tsapi TSReturnCode TSHttpTxnCacheLookupSkip(TSHttpTxn txnp);
   tsapi TSReturnCode TSHttpTxnServerRespIgnore(TSHttpTxn txnp);
   tsapi TSReturnCode TSHttpTxnShutDown(TSHttpTxn txnp, TSEvent event);
   tsapi TSReturnCode TSHttpTxnCloseAfterResponse(TSHttpTxn txnp, int should_close);
 
+  // TS-2195: TSHttpTxnCacheLookupSkip() is deprecated, because TSHttpTxnConfigIntSet(txn, TS_CONFIG_HTTP_CACHE_HTTP, 0)
+  // does the same thing, but better. TSHttpTxnCacheLookupSkip will be removed in TrafficServer 5.0.
+  tsapi TS_DEPRECATED TSReturnCode TSHttpTxnCacheLookupSkip(TSHttpTxn txnp);
+
   // TS-1996: These API swill be removed after v3.4.0 is cut. Do not use them!
   tsapi TSReturnCode TSHttpTxnNewCacheLookupDo(TSHttpTxn txnp, TSMBuffer bufp, TSMLoc url_loc);
   tsapi TSReturnCode TSHttpTxnSecondUrlTryLock(TSHttpTxn txnp);