maskit opened a new issue, #10340:
URL: https://github.com/apache/trafficserver/issues/10340
test_log_interface.cc
```
57 switch (event) {
58 case TS_EVENT_HTTP_READ_REQUEST_HDR:
59 if (is_get_request(transaction)) {
60 const std::string long_line(5000, 's');
61 TSTextLogObjectWrite(pluginlog, "Got a GET request. Writing a long
line: %s", long_line.c_str());
62 }
63 TSHttpTxnReenable(transaction, TS_EVENT_HTTP_CONTINUE);
64 return 0;
65
66 default:
67 return 0;
68 }
69
CID 1518601 (#1 of 1): Structurally dead code (UNREACHABLE)
unreachable: This code cannot be reached: tsapi::c::TSHttpSsnReenable....
70 TSHttpSsnReenable(session, TS_EVENT_HTTP_CONTINUE);
71
72 return 0;
73}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]