Github user PSUdaemon commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/1140#discussion_r85228532
--- Diff: proxy/http/HttpSM.cc ---
@@ -3309,7 +3309,7 @@ HttpSM::tunnel_handler_ua(int event,
HttpTunnelConsumer *c)
// only external POSTs should be subject to this logic; ruling out
internal POSTs here
bool is_eligible_post_request = (t_state.method == HTTP_WKSIDX_POST);
- if (is_eligible_post_request) {
+ if (is_eligible_post_request && ua_session) {
--- End diff --
I think @shinrich is looking at code further up where we check for NULLness
of `ua_session` so maybe she can say more whether or not we should be asserting.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---