This is an automated email from the ASF dual-hosted git repository.
bneradt 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 00adbb8076 Clarify HttpSM cache action cleanup (#13327)
00adbb8076 is described below
commit 00adbb80764c2a91209d1090ba9b7562ee7ad375
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Jun 24 20:43:27 2026 -0500
Clarify HttpSM cache action cleanup (#13327)
Describe what cancel_pending_action() does in the Coverity suppression
rationale. The helper cancels pending cache work and clears tracked pointers
rather than only setting flags.
---
src/proxy/http/HttpSM.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/proxy/http/HttpSM.cc b/src/proxy/http/HttpSM.cc
index 1a77bd48eb..c3a6871dea 100644
--- a/src/proxy/http/HttpSM.cc
+++ b/src/proxy/http/HttpSM.cc
@@ -293,7 +293,7 @@ HttpSM::~HttpSM()
Error("Exception in ~HttpSM during m_remap->release");
}
- // coverity[exn_spec_violation] - cancel_pending_action() only sets boolean
flags
+ // coverity[exn_spec_violation] - cancel_pending_action() cancels pending
cache work and clears tracked pointers
cache_sm.cancel_pending_action();
mutex.clear();