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 0c91131c12 HRW: Fix a broken Matcher related to Diags (#12365)
0c91131c12 is described below

commit 0c91131c12cf8d7c71c24677ebf707196481167c
Author: Leif Hedstrom <[email protected]>
AuthorDate: Wed Jul 16 17:16:34 2025 -0500

    HRW: Fix a broken Matcher related to Diags (#12365)
---
 plugins/header_rewrite/matcher.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/header_rewrite/matcher.cc 
b/plugins/header_rewrite/matcher.cc
index 6d7909f965..75faa6a2a1 100644
--- a/plugins/header_rewrite/matcher.cc
+++ b/plugins/header_rewrite/matcher.cc
@@ -97,8 +97,8 @@ Matchers<std::string>::test_set(const std::string &t) const
     if (match_with_modifiers(rhs, entry, _mods)) {
       if (pi_dbg_ctl.on()) {
         debug_helper(t, " ∈ ", true);
-        return true;
       }
+      return true;
     }
   }
 

Reply via email to