bug: log streams properly end when internal stream closes (#387)

This commit is contained in:
James Prestwich 2021-08-19 00:01:49 -07:00 committed by GitHub
parent 621882053c
commit 42aeeedcce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ where
let res = res.map(|inner| (inner, meta));
Poll::Ready(Some(res))
}
None => Poll::Pending,
None => Poll::Ready(None),
}
}
}