algesten / ureq

A simple, safe HTTP client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stream panics in drop during test

kolbma opened this issue · comments

stream::tests::test_deadline_stream_buffering

ureq/src/stream.rs

Lines 319 to 323 in 5178597

impl Drop for Stream {
fn drop(&mut self) {
debug!("dropping stream: {:?}", self);
}
}

ureq/src/stream.rs

Lines 692 to 696 in 5178597

impl ReadWrite for ReadRecorder {
fn socket(&self) -> Option<&TcpStream> {
unimplemented!()
}
}