Repository: trafficserver Updated Branches: refs/heads/5.0.x 9c6bb37b3 -> 9a727b10e
TS-2868: Error setting HSTS max age with traffic_line Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9a727b10 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9a727b10 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9a727b10 Branch: refs/heads/5.0.x Commit: 9a727b10e8e18efd9927531e86c307fa677b943f Parents: 9c6bb37 Author: Bryan Call <[email protected]> Authored: Tue Jun 3 11:56:56 2014 -0700 Committer: Bryan Call <[email protected]> Committed: Tue Jun 3 11:56:56 2014 -0700 ---------------------------------------------------------------------- CHANGES | 2 ++ mgmt/RecordsConfig.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9a727b10/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 6d8afe7..a3c017f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 5.0.0 + *) [TS-2868] Error setting HSTS max age with traffic_line + *) [TS-2776] Core dump inside openssl library *) [TS-2845] Commit e6b9cb533 causes problems with stats_over_http http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9a727b10/mgmt/RecordsConfig.cc ---------------------------------------------------------------------- diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc index 64b5be4..ecf1b47 100644 --- a/mgmt/RecordsConfig.cc +++ b/mgmt/RecordsConfig.cc @@ -1282,7 +1282,7 @@ RecordElement RecordsConfig[] = { , {RECT_CONFIG, "proxy.config.ssl.session_cache.timeout", RECD_INT, "0", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} , - {RECT_CONFIG, "proxy.config.ssl.hsts_max_age", RECD_INT, "-1", RECU_DYNAMIC, RR_NULL, RECC_INT, "[-1-2147483648]", RECA_NULL} + {RECT_CONFIG, "proxy.config.ssl.hsts_max_age", RECD_INT, "-1", RECU_DYNAMIC, RR_NULL, RECC_STR, "^-?[0-9]+$", RECA_NULL} , {RECT_CONFIG, "proxy.config.ssl.hsts_include_subdomains", RECD_INT, "0", RECU_DYNAMIC, RR_NULL, RECC_INT, "[0-1]", RECA_NULL} ,
