We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e93543 commit d8690f1Copy full SHA for d8690f1
crates/corro-agent/src/api/utils/mod.rs
@@ -40,8 +40,8 @@ impl http_body::Body for CountedBody {
40
let mut this = self.project();
41
42
match this.rx_frame.poll_recv(cx) {
43
- Poll::Ready(frame @ Some(_)) => return Poll::Ready(frame.map(Ok)),
44
- Poll::Ready(None) => return Poll::Ready(None),
+ Poll::Ready(frame @ Some(_)) => Poll::Ready(frame.map(Ok)),
+ Poll::Ready(None) => Poll::Ready(None),
45
Poll::Pending => Poll::Pending,
46
}
47
0 commit comments