This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/8.0.x by this push:
new 1a5151f Clearout shutdown_cont_event when the event has been processed
1a5151f is described below
commit 1a5151fe26420d71d8684f1c7e1fc86e608cd7ee
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Sun Jul 15 20:30:41 2018 +0900
Clearout shutdown_cont_event when the event has been processed
shutdown_cont_event was cleared out in main_event_handler but not in
state_closed.
(cherry picked from commit ef785f2f6c3f7cb27ceb934684027f7ab936afd7)
---
proxy/http2/Http2ConnectionState.cc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/proxy/http2/Http2ConnectionState.cc
b/proxy/http2/Http2ConnectionState.cc
index 0532370..01c0125 100644
--- a/proxy/http2/Http2ConnectionState.cc
+++ b/proxy/http2/Http2ConnectionState.cc
@@ -1006,6 +1006,8 @@ Http2ConnectionState::state_closed(int /* event */, void
*edata)
ink_release_assert(zombie_event == nullptr);
} else if (edata == fini_event) {
fini_event = nullptr;
+ } else if (edata == shutdown_cont_event) {
+ shutdown_cont_event = nullptr;
}
return 0;
}