This is an automated email from the ASF dual-hosted git repository.
zwoop 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 300a920115 Minor fixes to make Cripts building better (#13211)
300a920115 is described below
commit 300a9201159bee623470f72f040c50ddede0f034
Author: Leif Hedstrom <[email protected]>
AuthorDate: Fri May 29 13:14:09 2026 -0600
Minor fixes to make Cripts building better (#13211)
---
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 dfdbc6915a..d75393dd8c 100644
--- a/src/traffic_layout/info.cc
+++ b/src/traffic_layout/info.cc
@@ -105,6 +105,7 @@ produce_features(bool json)
#else
print_feature("TS_HAS_CERT_COMPRESSION", 0, json);
#endif
+ print_feature("TS_HAS_CRIPTS", TS_HAS_CRIPTS, json);
#ifdef F_GETPIPE_SZ
print_feature("TS_HAS_PIPE_BUFFER_SIZE_CONFIG", 1, json);
#else