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 14a7e4f commit ffbaa29Copy full SHA for ffbaa29
krpc/krpc-server/src/commonMain/kotlin/kotlinx/rpc/krpc/server/KrpcServer.kt
@@ -60,7 +60,9 @@ public abstract class KrpcServer(
60
*/
61
62
@InternalRpcApi
63
- public val internalScope: CoroutineScope = CoroutineScope(SupervisorJob(transport.coroutineContext.job))
+ public val internalScope: CoroutineScope = CoroutineScope(
64
+ transport.coroutineContext + SupervisorJob(transport.coroutineContext.job)
65
+ )
66
67
private val logger = RpcInternalCommonLogger.logger(rpcInternalObjectId())
68
0 commit comments