Updated Branches:
  refs/heads/master 1f98da88f -> 0ca83ac63

TS-1272: workaround for - FATAL: HttpSM.cc:890: failed assert


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/0ca83ac6
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/0ca83ac6
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/0ca83ac6

Branch: refs/heads/master
Commit: 0ca83ac63539ca0e6d5be9df431027c389044d64
Parents: 1f98da8
Author: James Peach <[email protected]>
Authored: Thu May 24 21:38:05 2012 -0700
Committer: James Peach <[email protected]>
Committed: Thu May 24 21:38:05 2012 -0700

----------------------------------------------------------------------
 CHANGES              |    2 ++
 proxy/http/HttpSM.cc |    2 ++
 2 files changed, 4 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/0ca83ac6/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 30a8af6..5ec554c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 3.1.4
+  *) [TS-1272] workaround for - FATAL: HttpSM.cc:890: failed assert `0`
+
   *) [TS-1240] Fix race in log buffer queuing code.
 
   *) [TS-1271] deprecate INKStats API

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/0ca83ac6/proxy/http/HttpSM.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc
index af64010..1545de8 100644
--- a/proxy/http/HttpSM.cc
+++ b/proxy/http/HttpSM.cc
@@ -886,6 +886,8 @@ HttpSM::state_watch_for_client_abort(int event, void *data)
       terminate_sm = true;
       break;
     }
+  case VC_EVENT_READ_COMPLETE:
+    // XXX Work around for TS-1233.
   case VC_EVENT_READ_READY:
     //  Ignore.  Could be a pipelined request.  We'll get to  it
     //    when we finish the current transaction

Reply via email to