From 3090900265ba21b56a2289d49d1cdf45b30efda1 Mon Sep 17 00:00:00 2001 From: Masakazu Kitajo Date: Mon, 17 Jan 2022 14:30:58 +0900 Subject: [PATCH] Don't use Http1ClientTransaction as an event handler --- proxy/http/Http1ClientTransaction.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/http/Http1ClientTransaction.cc b/proxy/http/Http1ClientTransaction.cc index 128b90d149e..3309063989b 100644 --- a/proxy/http/Http1ClientTransaction.cc +++ b/proxy/http/Http1ClientTransaction.cc @@ -31,7 +31,7 @@ Http1ClientTransaction::release() // Turn off reading until we are done with the SM // At that point the transaction/session with either be closed // or be put into keep alive state to wait from the next transaction - this->do_io_read(this, 0, nullptr); + this->do_io_read(this->_sm, 0, nullptr); _proxy_ssn->clear_session_active(); }