You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: arrow-libs/fx/arrow-fx-coroutines/src/main/kotlin/arrow/fx/coroutines/stream/ParJoin.kt
-4
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,6 @@ internal suspend fun <O> runInner(
74
74
outputQ.enqueue1(Some(s))
75
75
}
76
76
.interruptWhen(done.map { it.isDefined() }) // must be AFTER enqueue to the sync queue, otherwise the process may hang to enq last item while being interrupted
77
-
.compile()
78
77
.drain()
79
78
}.swap().orNull()
80
79
val e2 = lease.cancel().swap().orNull()
@@ -104,7 +103,6 @@ internal suspend fun <O> Stream<Stream<O>>.runOuter(
0 commit comments