From 9d202b3333713baed5b0ccdbeec8d5ca0da53a4c Mon Sep 17 00:00:00 2001 From: Susan Hinrichs Date: Fri, 14 Oct 2016 19:35:28 +0000 Subject: [PATCH] TS-4974: Bad debug assert in HttpSM::handle_server_setup_error --- proxy/http/HttpSM.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc index 11cfa330dac..3e3e9adbd4e 100644 --- a/proxy/http/HttpSM.cc +++ b/proxy/http/HttpSM.cc @@ -5394,7 +5394,7 @@ HttpSM::handle_server_setup_error(int event, void *data) // to figure out that things have gone to hell if (tunnel.is_tunnel_active()) { - ink_assert(server_entry->read_vio == data); + ink_assert(server_entry->read_vio == data || server_entry->write_vio == data); DebugSM("http", "[%" PRId64 "] [handle_server_setup_error] " "forwarding event %s to post tunnel", sm_id, HttpDebugNames::get_event_name(event));