You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by rr...@apache.org on 2018/07/23 22:41:36 UTC

[trafficserver] branch master updated: TS-4765: Removes previously deprecated cqbl and pqbl log tags

This is an automated email from the ASF dual-hosted git repository.

rrm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 175143e  TS-4765: Removes previously deprecated cqbl and pqbl log tags
175143e is described below

commit 175143e32b719ccc70a1a99229bcbe5a28cf9ab8
Author: Randall Meyer <ra...@yahoo.com>
AuthorDate: Mon Jul 23 11:19:56 2018 -0700

    TS-4765: Removes previously deprecated cqbl and pqbl log tags
---
 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);