This is an automated email from the ASF dual-hosted git repository. zwoop pushed a commit to branch 8.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit d6cc938973a9a4122ee4f16cfa92a3083d82f307 Author: Randall Meyer <[email protected]> AuthorDate: Mon Jul 23 11:19:56 2018 -0700 TS-4765: Removes previously deprecated cqbl and pqbl log tags (cherry picked from commit 175143e32b719ccc70a1a99229bcbe5a28cf9ab8) --- proxy/logging/Log.cc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/proxy/logging/Log.cc b/proxy/logging/Log.cc index 753516b..c10d39c 100644 --- a/proxy/logging/Log.cc +++ b/proxy/logging/Log.cc @@ -484,12 +484,6 @@ Log::init_fields() global_field_list.add(field, false); ink_hash_table_insert(field_symbol_hash, "puuid", field); - // TS-4765: This alias is deprecated to be removed in 8.0. - field = new LogField("client_req_body_len", "cqbl", LogField::sINT, &LogAccess::marshal_client_req_content_len, - &LogAccess::unmarshal_int_to_str); - global_field_list.add(field, false); - ink_hash_table_insert(field_symbol_hash, "cqbl", field); - field = new LogField("client_req_content_len", "cqcl", LogField::sINT, &LogAccess::marshal_client_req_content_len, &LogAccess::unmarshal_int_to_str); global_field_list.add(field, false); @@ -656,12 +650,6 @@ Log::init_fields() global_field_list.add(field, false); ink_hash_table_insert(field_symbol_hash, "pqql", field); - // TS-4765: This alias is deprecated to be removed in 8.0. - field = new LogField("proxy_req_body_len", "pqbl", LogField::sINT, &LogAccess::marshal_proxy_req_content_len, - &LogAccess::unmarshal_int_to_str); - global_field_list.add(field, false); - ink_hash_table_insert(field_symbol_hash, "pqbl", field); - field = new LogField("proxy_req_content_len", "pqcl", LogField::sINT, &LogAccess::marshal_proxy_req_content_len, &LogAccess::unmarshal_int_to_str); global_field_list.add(field, false);
