less verbosity
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/pr Build was killed

This commit is contained in:
Alex 2022-09-01 16:13:43 +02:00
parent b82ad70dd5
commit f6ad1d0fab
Signed by: lx
GPG key ID: 0E496D15096376BE

View file

@ -280,7 +280,6 @@ impl Stream for CancelOnDropStream {
let res = this.stream.poll_next(cx); let res = this.stream.poll_next(cx);
if matches!(res, Poll::Ready(None)) { if matches!(res, Poll::Ready(None)) {
if let Some(c) = this.cancel.take() { if let Some(c) = this.cancel.take() {
trace!("defusing cancel request {}", c.id);
std::mem::forget(c) std::mem::forget(c)
} }
} }