Skip to content

Commit fe88b23

Browse files
committed
fix QUIC implementation
1 parent b7f27ba commit fe88b23

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

rsocket-test/src/commonMain/kotlin/io/rsocket/kotlin/test/SuspendTest.kt

+8-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@ import kotlin.time.Duration.Companion.minutes
2424
import kotlin.time.Duration.Companion.seconds
2525

2626
val TestExceptionHandler = CoroutineExceptionHandler { c, e ->
27-
println("Error in $c -> ${e.stackTraceToString()}")
27+
val message = buildString {
28+
appendLine("TestExceptionHandler:")
29+
appendLine(" context: $c")
30+
appendLine(" cause: $e")
31+
appendLine(" stackTrace:")
32+
e.stackTraceToString().lines().forEach { appendLine(" $it") }
33+
}
34+
println(message)
2835
}
2936

3037
interface SuspendTest {

rsocket-transports/netty-quic/src/jvmMain/kotlin/io/rsocket/kotlin/transport/netty/quic/NettyQuicStreamHandler.kt

-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ internal class NettyQuicStreamHandler(
8383
state.inbound.cancel()
8484
withContext(NonCancellable) {
8585
writerJob.join()
86-
// TODO: what is the correct way to properly shutdown stream?
87-
channel.shutdownInput().awaitFuture()
8886
channel.close().awaitFuture()
8987
}
9088
}

0 commit comments

Comments
 (0)