This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.2.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 4570ace4aa2b35f91655cfc2ba72df9782e8ffab Author: Leif Hedstrom <[email protected]> AuthorDate: Fri May 29 13:14:09 2026 -0600 Minor fixes to make Cripts building better (#13211) (cherry picked from commit 300a9201159bee623470f72f040c50ddede0f034) --- include/cripts/Epilogue.hpp | 2 +- src/traffic_layout/info.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cripts/Epilogue.hpp b/include/cripts/Epilogue.hpp index 715673ccb0..ce83f07476 100644 --- a/include/cripts/Epilogue.hpp +++ b/include/cripts/Epilogue.hpp @@ -459,7 +459,7 @@ http_txn_cont(TSCont contp, TSEvent event, void *edata) } } } - if (context->state.enabled_hooks & cripts::Callbacks::DO_TXN_CLOSE) { + if (context->state.enabled_hooks & cripts::Callbacks::DO_SEND_REQUEST) { CDebug("Entering do_send_request()"); wrap_send_request(context, true, CaseArg); } else if (context->state.enabled_hooks & cripts::Callbacks::GLB_SEND_REQUEST) { diff --git a/src/traffic_layout/info.cc b/src/traffic_layout/info.cc index be431cb548..99bfa4593a 100644 --- a/src/traffic_layout/info.cc +++ b/src/traffic_layout/info.cc @@ -139,6 +139,7 @@ produce_features(bool json) print_feature("TS_HAS_CERT_COMPRESSION_ZLIB", ts_has_cert_compression_zlib, json); print_feature("TS_HAS_CERT_COMPRESSION_BROTLI", ts_has_cert_compression_brotli, json); print_feature("TS_HAS_CERT_COMPRESSION_ZSTD", ts_has_cert_compression_zstd, json); + print_feature("TS_HAS_CRIPTS", TS_HAS_CRIPTS, json); #ifdef F_GETPIPE_SZ print_feature("TS_HAS_PIPE_BUFFER_SIZE_CONFIG", 1, json); #else
