1 parent a44a69f commit 9919381Copy full SHA for 9919381
1 file changed
src/proxy/idle_pool.rs
@@ -121,7 +121,9 @@ impl IdlePool {
121
let conn = self.pool.get_mut(i).unwrap();
122
if conn.token() == event.token() {
123
if event.readiness().is_readable() {
124
- conn.do_read();
+ if let Some(_) = conn.do_read() {
125
+ log::error!("found data in https handshake phase");
126
+ }
127
}
128
if event.readiness().is_writable() {
129
conn.do_send();
0 commit comments