This is an automated email from the ASF dual-hosted git repository.
maskit 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 b287b7242a Fix the log field type for cqpv and sqpv (#12890)
b287b7242a is described below
commit b287b7242aa6b336eb995cadebc722fb98bd9ee9
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Thu Feb 19 11:17:25 2026 -0700
Fix the log field type for cqpv and sqpv (#12890)
---
src/proxy/logging/Log.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/proxy/logging/Log.cc b/src/proxy/logging/Log.cc
index 50e975e284..4ac59bf679 100644
--- a/src/proxy/logging/Log.cc
+++ b/src/proxy/logging/Log.cc
@@ -480,12 +480,12 @@ Log::init_fields()
global_field_list.add(field, false);
field_symbol_hash.emplace("pqup", field);
- field = new LogField("client_req_protocol_version", "cqpv", LogField::dINT,
&LogAccess::marshal_client_req_protocol_version,
+ field = new LogField("client_req_protocol_version", "cqpv",
LogField::STRING, &LogAccess::marshal_client_req_protocol_version,
&LogAccess::unmarshal_str);
global_field_list.add(field, false);
field_symbol_hash.emplace("cqpv", field);
- field = new LogField("server_req_protocol_version", "sqpv", LogField::dINT,
&LogAccess::marshal_server_req_protocol_version,
+ field = new LogField("server_req_protocol_version", "sqpv",
LogField::STRING, &LogAccess::marshal_server_req_protocol_version,
&LogAccess::unmarshal_str);
global_field_list.add(field, false);
field_symbol_hash.emplace("sqpv", field);