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.
2 parents 2ca03ca + 5fba3a0 commit 6f19165Copy full SHA for 6f19165
src/stream/stream/merge.rs
@@ -44,7 +44,7 @@ where
44
45
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
46
let this = self.project();
47
- if utils::random(1) == 1 {
+ if utils::random(2) == 0 {
48
poll_next_in_order(this.left, this.right, cx)
49
} else {
50
poll_next_in_order(this.right, this.left, cx)
0 commit comments