You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/07/29 20:52:55 UTC

[1/2] git commit: TS-2071 Remove proxy.config.http.session_auth_cache_keep_alive_enabled remnants

Updated Branches:
  refs/heads/master 49f5a4ff5 -> 6bd5d88ed


TS-2071 Remove proxy.config.http.session_auth_cache_keep_alive_enabled remnants


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

Branch: refs/heads/master
Commit: c5d519733818c74a57e9b084a84e8d7c51fe8cd3
Parents: 49f5a4f
Author: Leif Hedstrom <zw...@apache.org>
Authored: Fri Jul 26 10:28:25 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon Jul 29 20:51:36 2013 +0200

----------------------------------------------------------------------
 lib/perl/lib/Apache/TS/AdminClient.pm | 1 -
 mgmt/RecordsConfig.cc                 | 2 --
 proxy/http/HttpConfig.cc              | 3 ---
 proxy/http/HttpConfig.h               | 2 --
 4 files changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c5d51973/lib/perl/lib/Apache/TS/AdminClient.pm
----------------------------------------------------------------------
diff --git a/lib/perl/lib/Apache/TS/AdminClient.pm b/lib/perl/lib/Apache/TS/AdminClient.pm
index cf3f91b..bf97ea6 100644
--- a/lib/perl/lib/Apache/TS/AdminClient.pm
+++ b/lib/perl/lib/Apache/TS/AdminClient.pm
@@ -517,7 +517,6 @@ The Apache Traffic Server Administration Manual will explain what these strings
  proxy.config.http.server_other_ports
  proxy.config.http.server_port
  proxy.config.http.server_port_attr
- proxy.config.http.session_auth_cache_keep_alive_enabled
  proxy.config.http.share_server_sessions
  proxy.config.http.slow.log.threshold
  proxy.config.http.connect_ports

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c5d51973/mgmt/RecordsConfig.cc
----------------------------------------------------------------------
diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc
index 0392677..4e3b5d1 100644
--- a/mgmt/RecordsConfig.cc
+++ b/mgmt/RecordsConfig.cc
@@ -437,8 +437,6 @@ RecordElement RecordsConfig[] = {
   ,
   {RECT_CONFIG, "proxy.config.http.flow_control.low_water", RECD_INT, "0", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL}
   ,
-  {RECT_CONFIG, "proxy.config.http.session_auth_cache_keep_alive_enabled", RECD_INT, "1", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL}
-  ,
   //       # Send http11 requests
   //       #
   //       #   0 - Never

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c5d51973/proxy/http/HttpConfig.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpConfig.cc b/proxy/http/HttpConfig.cc
index 701be5b..385429b 100644
--- a/proxy/http/HttpConfig.cc
+++ b/proxy/http/HttpConfig.cc
@@ -1179,8 +1179,6 @@ HttpConfig::startup()
   HttpEstablishStaticConfigByte(c.oride.flow_control_enabled, "proxy.config.http.flow_control.enabled");
   HttpEstablishStaticConfigLongLong(c.oride.flow_high_water_mark, "proxy.config.http.flow_control.high_water");
   HttpEstablishStaticConfigLongLong(c.oride.flow_low_water_mark, "proxy.config.http.flow_control.low_water");
-  HttpEstablishStaticConfigByte(c.session_auth_cache_keep_alive_enabled,
-                                "proxy.config.http.session_auth_cache_keep_alive_enabled");
   HttpEstablishStaticConfigLongLong(c.origin_server_pipeline, "proxy.config.http.origin_server_pipeline");
   HttpEstablishStaticConfigLongLong(c.user_agent_pipeline, "proxy.config.http.user_agent_pipeline");
   HttpEstablishStaticConfigByte(c.oride.share_server_sessions, "proxy.config.http.share_server_sessions");
@@ -1468,7 +1466,6 @@ HttpConfig::reconfigure()
     params->oride.flow_high_water_mark = params->oride.flow_low_water_mark = 0;
   }
 
-  params->session_auth_cache_keep_alive_enabled = INT_TO_BOOL(m_master.session_auth_cache_keep_alive_enabled);
   params->origin_server_pipeline = m_master.origin_server_pipeline;
   params->user_agent_pipeline = m_master.user_agent_pipeline;
   params->oride.share_server_sessions = m_master.oride.share_server_sessions;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c5d51973/proxy/http/HttpConfig.h
----------------------------------------------------------------------
diff --git a/proxy/http/HttpConfig.h b/proxy/http/HttpConfig.h
index d8d9f65..b5f3a3c 100644
--- a/proxy/http/HttpConfig.h
+++ b/proxy/http/HttpConfig.h
@@ -650,7 +650,6 @@ public:
   ///////////////////////////////////////////////////
   MgmtInt proxy_server_port;
   char *proxy_server_other_ports;
-  MgmtByte session_auth_cache_keep_alive_enabled;
   MgmtInt origin_server_pipeline;
   MgmtInt user_agent_pipeline;
   MgmtInt transaction_active_timeout_in;
@@ -910,7 +909,6 @@ HttpConfigParams::HttpConfigParams()
     num_url_expansions(0),
     proxy_server_port(0),
     proxy_server_other_ports(0),
-    session_auth_cache_keep_alive_enabled(0),
     origin_server_pipeline(0),
     user_agent_pipeline(0),
     transaction_active_timeout_in(0),


[2/2] git commit: Added TS-2071

Posted by zw...@apache.org.
Added TS-2071


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

Branch: refs/heads/master
Commit: 6bd5d88ed3712b7cf37e72a9acd2afb0daa2caf1
Parents: c5d5197
Author: Leif Hedstrom <zw...@apache.org>
Authored: Mon Jul 29 20:52:13 2013 +0200
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon Jul 29 20:52:13 2013 +0200

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/6bd5d88e/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 3103707..4c906b2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 Changes with Apache Traffic Server 3.3.5
 
 
+  *) TS-2071 Remove proxy.config.http.session_auth_cache_keep_alive_enabled
+   remnants.
+
   *) TS-2072 Remove proxy.config.http.avoid_content_spoofing, and also fix a
     logical bug around the tests of when to mark the request header dirty.