You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2018/07/17 15:09:40 UTC

[trafficserver] branch 7.1.x updated: Revert "Clearout shutdown_cont_event when the event has been processed"

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/7.1.x by this push:
     new 292c7d4  Revert "Clearout shutdown_cont_event when the event has been processed"
292c7d4 is described below

commit 292c7d483dd9a9a05560080f2c8ad989fef6d8e6
Author: Leif Hedstrom <zw...@apache.org>
AuthorDate: Tue Jul 17 11:09:12 2018 -0400

    Revert "Clearout shutdown_cont_event when the event has been processed"
    
    This reverts commit e9e5f862bac586280f5485d720e7e1bee15be0d4.
    
    This was done by mistake, this code is not applicable to upstream
    7.1.x.
---
 proxy/http2/Http2ConnectionState.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/proxy/http2/Http2ConnectionState.cc b/proxy/http2/Http2ConnectionState.cc
index 604f0e2..e45e624 100644
--- a/proxy/http2/Http2ConnectionState.cc
+++ b/proxy/http2/Http2ConnectionState.cc
@@ -959,8 +959,6 @@ Http2ConnectionState::state_closed(int /* event */, void *edata)
 {
   if (edata == fini_event) {
     fini_event = nullptr;
-  } else if (edata == shutdown_cont_event) {
-    shutdown_cont_event = nullptr;
   }
   return 0;
 }