Repository: trafficserver Updated Branches: refs/heads/master 721d5cf50 -> 109a92ac1
TS-2704: Core dump in state_raw_http_server_open getting EVENT_INTERVAL event Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/109a92ac Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/109a92ac Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/109a92ac Branch: refs/heads/master Commit: 109a92ac1ca5db93f36b7657671a42817ac553fd Parents: 721d5cf Author: Sudheer Vinukonda <[email protected]> Authored: Thu Apr 17 11:15:38 2014 -0700 Committer: Bryan Call <[email protected]> Committed: Thu Apr 17 11:15:38 2014 -0700 ---------------------------------------------------------------------- proxy/http/HttpSM.cc | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/109a92ac/proxy/http/HttpSM.cc ---------------------------------------------------------------------- diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc index 92f7b74..767d252 100644 --- a/proxy/http/HttpSM.cc +++ b/proxy/http/HttpSM.cc @@ -1069,6 +1069,11 @@ HttpSM::state_raw_http_server_open(int event, void *data) t_state.current.state = HttpTransact::CONGEST_CONTROL_CONGESTED_ON_M; break; + case EVENT_INTERVAL: + Error("[HttpSM::state_raw_http_server_open] event: EVENT_INTERVAL state: %d server_entry: %p", + t_state.current.state, server_entry); + return 0; + default: ink_release_assert(0); break;
