TS-2217: remove the option to turn off body factory - setting it to 0
will result in empty responses
Conflicts:
CHANGES
diff --git a/CHANGES b/CHANGES
index a227f72..2eb97a8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
-*- coding: utf-8 -*-
Changes with Apache Traffic Server 4.0.2
+ *) [TS-2217] remove the option to turn off body factory - setting it to 0 will
+ result in empty responses
+
*) [TS-2191] not reschedule http_sm when the sm_list`s lock is not acquired.
*) [TS-2174] traffic_shell/traffic_line miss some stats value
diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc
index bf4b9ee..49d6da5 100644
--- a/mgmt/RecordsConfig.cc
+++ b/mgmt/RecordsConfig.cc
@@ -702,10 +702,10 @@
//# Customizable User Response Pages
//#
//##############################################################################
- //# 0 - turn off customizable user response pages
//# 1 - enable customizable user response pages in only the "default" directory
//# 2 - enable language-targeted user response pages
- {RECT_CONFIG, "proxy.config.body_factory.enable_customizations", RECD_INT, "1", RECU_RESTART_TS, RR_NULL, RECC_INT, "[0-2]", RECA_NULL}
+ {RECT_CONFIG, "proxy.config.body_factory.enable_customizations", RECD_INT, "1", RECU_RESTART_TS, RR_NULL, RECC_INT,
+ "[1-2]", RECA_NULL}
,
{RECT_CONFIG, "proxy.config.body_factory.enable_logging", RECD_INT, "0", RECU_RESTART_TS, RR_NULL, RECC_INT, "[0-1]", RECA_NULL}
,