You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zy...@apache.org on 2012/10/17 08:45:05 UTC

git commit: TS-1535: FetchSM process_fetch_write should ignore event TS_EVENT_VCONN_WRITE_READY

Updated Branches:
  refs/heads/master 47cb166fa -> b5bd1cdc3


TS-1535: FetchSM process_fetch_write should ignore event TS_EVENT_VCONN_WRITE_READY


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

Branch: refs/heads/master
Commit: b5bd1cdc3fdcdb8cc1c624181ce987b4038f429f
Parents: 47cb166
Author: Yu Qing <zh...@taobao.com>
Authored: Wed Oct 17 06:01:03 2012 +0800
Committer: Zhao Yongming <mi...@gmail.com>
Committed: Wed Oct 17 14:44:25 2012 +0800

----------------------------------------------------------------------
 CHANGES          |    2 ++
 proxy/FetchSM.cc |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b5bd1cdc/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 527ca15..500ff4a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 3.3.1
   
+  *) [TS-1535] FetchSM process_fetch_write should ignore event TS_EVENT_VCONN_WRITE_READY
+
   *) [TS-1534] implement the interim cache for ESI parser result
 
   *) [TS-1501] vc`s inactivity_timeout event should be schedule in vc`s thread

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b5bd1cdc/proxy/FetchSM.cc
----------------------------------------------------------------------
diff --git a/proxy/FetchSM.cc b/proxy/FetchSM.cc
index 9caf516..0ac58e9 100644
--- a/proxy/FetchSM.cc
+++ b/proxy/FetchSM.cc
@@ -188,6 +188,7 @@ FetchSM::process_fetch_write(int event)
     req_finished = true;
     break;
   case TS_EVENT_VCONN_WRITE_READY:
+    break; //just ignore this event 
   case TS_EVENT_ERROR:
     //InvokePlugin( TS_EVENT_ERROR, NULL);
       InvokePlugin( callback_events.failure_event_id, NULL);